summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 268570be1f969d1e20ee7df0df1a239171bafde8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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