diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3420a42..a1a0f6c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,6 +5,7 @@ before_script: stages: - test + - build format: stage: test @@ -20,3 +21,14 @@ test: stage: test script: - make test + +build: + stage: build + script: + - git fetch --tags + - make build/snapshot + artifacts: + paths: + - dist/*.tar.gz + - dist/checksums.txt + expire_in: 1 day