summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: a74364b2ad9888184f2d723c5d89d147133c8a86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
image: haskell:8.10.7

stages:
  - build

build-job:
  only: 
    refs:
      - main
  stage: build
  script:
    - stack build
    - mkdir dist
    - stack install --local-bin-path dist
    - cp config.json dist
  artifacts:
    paths:
      - dist