Skip to content

Commit

Permalink
fix(release-please): fix boolean interpretation inside github workflow 2
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasbriere1 committed Jul 31, 2024
1 parent 9f7f493 commit a0cee5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gh-release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
release-type: terraform-module
- uses: actions/checkout@v4
- name: tag major and minor versions
if: ${{ steps.release.outputs.release_created == true && env.major_and_minor_tags }}
if: ${{ steps.release.outputs.release_created == 'true' && env.major_and_minor_tags }}
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
Expand Down

0 comments on commit a0cee5a

Please sign in to comment.