From 6e193069d554deab6e33351de36697a4ac643245 Mon Sep 17 00:00:00 2001 From: Nicolas BRIERE Date: Wed, 31 Jul 2024 16:42:42 +0200 Subject: [PATCH] fix(release-please): fix boolean interpretation inside github workflow --- .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 ac285c8..c8cbc4d 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 && 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