Skip to content
Snippets Groups Projects
Commit a592a0fc authored by Graeme Gillies's avatar Graeme Gillies
Browse files

fix: goreleaser tasks from throwing invalid CI format error

Due to a missing `$` on the rules expressions, the rules for goreleaser
tasks were failing to be valid GitLab CI yaml.
parent aeda55d6
No related branches found
No related tags found
No related merge requests found
Pipeline #15420672 passed
Loading
Loading
@@ -37,7 +37,7 @@ goreleaser:
 
rules:
# Only run this release job for tags, not every commit
- if: "$CI_COMMIT_TAG && FIPS_MODE != 1"
- if: "$CI_COMMIT_TAG && $FIPS_MODE != 1"
exists:
- .goreleaser.yml
 
Loading
Loading
@@ -76,7 +76,7 @@ goreleaser-fips:
 
rules:
# Only run this release job for tags, not every commit
- if: "$CI_COMMIT_TAG && FIPS_MODE == 1"
- if: "$CI_COMMIT_TAG && $FIPS_MODE == 1"
exists:
- .goreleaser.yml
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment