From 85bbb07524cfad10115b2d425afb8140911f8bfa Mon Sep 17 00:00:00 2001 From: piper pentagram Date: Wed, 6 Nov 2024 19:45:08 +0000 Subject: [PATCH] basic build job --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..2ac1d52 --- /dev/null +++ b/.gitlab-ci.yml @@ -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