From 6fa9bafe11954dfe3c55a27c78c0275663d3c561 Mon Sep 17 00:00:00 2001 From: Piper Pentagram Date: Wed, 6 Nov 2024 11:48:22 -0800 Subject: [PATCH] don't tar up the binary because gitlab zips it anyway --- .gitlab-ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2ac1d52..ec49516 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,9 +6,8 @@ stages: compile: stage: build script: - - go build -o bingobot - mkdir dist - - tar -czf dist/bingobot.tar.gz bingobot + - go build -o dist/bingobot artifacts: paths: - - dist/bingobot.tar.gz + - dist/bingobot