bingobot/.gitlab-ci.yml
2024-11-06 19:45:08 +00:00

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