Skip to content

Commit

Permalink
(bug): GHA does not use bools how you think (#3042)
Browse files Browse the repository at this point in the history
Signed-off-by: schristoff <[email protected]>
  • Loading branch information
schristoff authored Mar 27, 2024
1 parent e28e384 commit 98277cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_pipelinesrelease_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
- Validate-smoke_test
runs-on: ubuntu-latest
permissions: write-all
if: success() && inputs.shouldPublish
if: success() && ${{ inputs.shouldPublish == true }}
steps:
- name: checkout
uses: actions/[email protected]
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
- Validate-smoke_test
runs-on: ubuntu-latest
permissions: write-all
if: success() && inputs.shouldPublish
if: success() && ${{inputs.shouldPublish == true}}
steps:
- name: checkout
uses: actions/[email protected]
Expand Down

0 comments on commit 98277cd

Please sign in to comment.