mirror of
https://github.com/idanoo/NZCovidBot
synced 2025-07-01 19:22:14 +00:00
18 lines
No EOL
242 B
YAML
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 |