alpha
Login
or
Join now
gwen.works
/
churros-notella
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
ci: fix tagging
author
Ewen Le Bihan
date
2 years ago
(Oct 31, 2024, 8:41 PM +0100)
commit
8a97346c
8a97346c6197c8c6a0162583ce72806014413a49
parent
7891794c
7891794c32dbd91612a83ce37a573ac629e2d13e
+2
-2
1 changed file
Expand all
Collapse all
Unified
Split
.gitlab-ci.yml
+2
-2
.gitlab-ci.yml
Reviewed
···
12
12
extends: .buildkit
13
13
stage: deploy
14
14
rules:
15
15
-
- if: $CI_COMMIT_TAG =~ /^\d+\.\d+\.\d+/
15
15
+
- if: $CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+/
16
16
- when: manual
17
17
script:
18
18
-
- export TAG=$(echo $CI_COMMIT_TAG)
18
18
+
- export TAG=$(echo $CI_COMMIT_TAG | sed 's/^v//')
19
19
- |
20
20
buildctl-daemonless.sh build \
21
21
--frontend=dockerfile.v0 \