NZCovidBot/.gitlab-ci.yml
2022-01-17 16:25:26 +13:00

18 lines
No EOL
242 B
YAML

stages:
- build
variables:
VERSION: 0.1.3
build-go:
image: golang:1.17
stage: build
only:
- master
script:
- go build -o nzcovidbot cmd/nzcovidbot/*.go
artifacts:
expire_in: 1 month
paths:
- nzcovidbot
app