Skip to content

Commit

Permalink
ci(rp): string comparison in job conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Jan 5, 2024
1 parent 3f84f71 commit 6c90218
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

runs-on: ubuntu-latest
needs: release-please
if: ${{ needs.release-please.outputs.theme_release }}
if: ${{ needs.release-please.outputs.theme_release == 'true' }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
release-pack:
runs-on: ubuntu-latest
needs: release-please
if: ${{ needs.release-please.outputs.pack_release }}
if: ${{ needs.release-please.outputs.pack_release == 'true' }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:

runs-on: ubuntu-latest
needs: release-please
if: ${{ needs.release-please.outputs.npm_release }}
if: ${{ needs.release-please.outputs.npm_release == 'true' }}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 6c90218

Please sign in to comment.