1
0
mirror of https://gitlab.com/packaging/gitea synced 2024-12-18 08:03:29 +00:00

fix build pipeline

Signed-off-by: morph027 <stefan.heitmueller@gmx.com>
This commit is contained in:
morph027 2022-01-17 09:15:49 +01:00
parent 78aead52a3
commit 6398d11afd
No known key found for this signature in database
GPG Key ID: BF17A54BB873BE58

View File

@ -15,8 +15,8 @@ stages:
stage: package stage: package
image: golang:latest image: golang:latest
script: script:
- export VERSION="$(echo ${CI_COMMIT_TAG#*v}" | cut -d'-' -f1) - export VERSION=$(echo ${CI_COMMIT_TAG#*v} | cut -d'-' -f1)
- export PATCHLEVEL="$(echo ${CI_COMMIT_TAG}" | cut -d'-' -f2) - export PATCHLEVEL=$(echo ${CI_COMMIT_TAG} | cut -d'-' -f2)
- apt-get -qq update - apt-get -qq update
- apt-get -qqy install ruby-dev ruby-ffi curl file - apt-get -qqy install ruby-dev ruby-ffi curl file
- gem install specific_install - gem install specific_install