From a0cee5a4497c376403fd19459a448684af4f09ca Mon Sep 17 00:00:00 2001 From: Nicolas BRIERE Date: Wed, 31 Jul 2024 16:44:33 +0200 Subject: [PATCH] fix(release-please): fix boolean interpretation inside github workflow 2 --- .github/workflows/gh-release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-release-please.yml b/.github/workflows/gh-release-please.yml index c8cbc4d..844b3bd 100644 --- a/.github/workflows/gh-release-please.yml +++ b/.github/workflows/gh-release-please.yml @@ -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