Skip to content

Commit

Permalink
Merge pull request #13 from dyllamt/feature/missing-string-in-actions
Browse files Browse the repository at this point in the history
update to bool check
  • Loading branch information
dyllamt authored Feb 17, 2024
2 parents e3f6964 + d2ba177 commit d85c7ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
docker-push:
needs: [get-version, new-version-check]
if: needs.new-version-check.outputs.should_release == 'true'
if: needs.new-version-check.outputs.should_release == true
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -63,7 +63,7 @@ jobs:

helm-release:
needs: [get-version, new-version-check]
if: needs.new-version-check.outputs.should_release == 'true'
if: needs.new-version-check.outputs.should_release == true
permissions:
contents: write
runs-on: ubuntu-latest
Expand Down

0 comments on commit d85c7ca

Please sign in to comment.