basic build job

This commit is contained in:
piper pentagram 2024-11-06 19:45:08 +00:00
parent 5eb83783af
commit 85bbb07524

14
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,14 @@
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