This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: fix tagging

+2 -2
+2 -2
.gitlab-ci.yml
··· 12 12 extends: .buildkit 13 13 stage: deploy 14 14 rules: 15 - - if: $CI_COMMIT_TAG =~ /^\d+\.\d+\.\d+/ 15 + - if: $CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+/ 16 16 - when: manual 17 17 script: 18 - - export TAG=$(echo $CI_COMMIT_TAG) 18 + - export TAG=$(echo $CI_COMMIT_TAG | sed 's/^v//') 19 19 - | 20 20 buildctl-daemonless.sh build \ 21 21 --frontend=dockerfile.v0 \