Skip to content

Commit

Permalink
fix(release-please): fix boolean interpretation inside github workflow 3
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasbriere1 committed Jul 31, 2024
1 parent b4eb49b commit 763f1b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gh-release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
github-releaseplease:
runs-on: ubuntu-latest
env:
major_and_minor_tags: ${{ inputs.major_and_minor_tags }}
major_and_minor_tags: ${{ inputs.major_and_minor_tags || true }}
permissions:
contents: write
pull-requests: write
Expand All @@ -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 763f1b2

Please sign in to comment.