14 lines
217 B
YAML
14 lines
217 B
YAML
image: golang:latest
|
|
|
|
stages:
|
|
- build
|
|
|
|
compile:
|
|
stage: build
|
|
script:
|
|
- go build -o bingobot
|
|
- mkdir dist
|
|
- tar -czf dist/bingobot.tar.gz bingobot
|
|
artifacts:
|
|
paths:
|
|
- dist/bingobot.tar.gz
|