GoScrobble/.gitlab-ci.yml

21 lines
294 B
YAML
Raw Normal View History

2021-03-27 06:47:21 +00:00
stages:
- build
2021-03-27 07:24:17 +00:00
variables:
2021-12-24 23:05:57 +00:00
VERSION: 0.1.001
2021-03-27 07:24:17 +00:00
2021-03-27 06:47:21 +00:00
build-go:
2021-12-25 00:30:55 +00:00
image: golang:1.16
2021-03-27 06:47:21 +00:00
stage: build
only:
- master
2021-03-27 06:47:21 +00:00
script:
- go build -o goscrobble cmd/go-scrobble/*.go
artifacts:
2021-12-24 23:05:57 +00:00
expire_in: 1 week
2021-03-27 06:47:21 +00:00
paths:
- goscrobble
- migrations
- init
2021-03-27 22:01:58 +00:00
- .env.example