Skip to content

Commit cdddeb3

Browse files
fix(ci): don't run pipeline on commit tag (#19)
`stage: release` on default branch has a release tagged push anyway
1 parent cc5347c commit cdddeb3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.gitlab-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ default:
77

88
workflow:
99
rules:
10+
- if: $CI_COMMIT_TAG
11+
when: never
1012
- if: '$CI_COMMIT_BRANCH != "coreweave"'
1113
variables:
1214
DEBUG_IMAGE: "1"
1315
IMAGE_SUFFIX: "-debug"
14-
- if: '$CI_COMMIT_BRANCH == "coreweave" || $CI_COMMIT_TAG'
16+
- if: '$CI_COMMIT_BRANCH == "coreweave"'
1517
variables:
1618
DEBUG_IMAGE: "0"
1719
IMAGE_SUFFIX: ""

0 commit comments

Comments
 (0)