NZCovidBot/.gitlab-ci.yml
2022-01-23 21:50:41 +13:00

17 lines
239 B
YAML

stages:
- build
variables:
VERSION: 0.1.4
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