Skip to content

Commit

Permalink
fix evaluation of if fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Gottox committed Mar 10, 2025
1 parent d477e3d commit 409b418
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

# Check Versions
- name: Check If Versions Match
if: contains(github.ref_name, 'snapshot') == false
if: ${{ contains(github.ref_name, 'snapshot') == false }}
run: |
helm_version=$(yq .version charts/rustcloak-operator/Chart.yaml)
helm_appversion=$(yq .appVersion charts/rustcloak-operator/Chart.yaml)
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
archs: "amd64,arm64"

release:
if: contains(github.ref_name, 'snapshot') == false
if: ${{ contains(github.ref_name, 'snapshot') == false }}
needs:
- container
- build
Expand Down

0 comments on commit 409b418

Please sign in to comment.