bingobot/.gitlab-ci.yml
2024-11-06 11:48:22 -08:00

13 lines
170 B
YAML

image: golang:latest
stages:
- build
compile:
stage: build
script:
- mkdir dist
- go build -o dist/bingobot
artifacts:
paths:
- dist/bingobot