From 237284020452a7319828ca542adb1cfad7bfa858 Mon Sep 17 00:00:00 2001 From: Erin Schnabel Date: Wed, 26 Feb 2025 11:10:18 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20=F0=9F=90=9B=20=20fix=20pdf=20re?= =?UTF-8?q?lease=20conditions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pdf-build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pdf-build.yaml b/.github/workflows/pdf-build.yaml index 9820b48..9975c01 100644 --- a/.github/workflows/pdf-build.yaml +++ b/.github/workflows/pdf-build.yaml @@ -93,7 +93,7 @@ jobs: echo "release_notes: ${{ github.event.inputs.release_notes }}" - name: Update snapshot tag - if: ${{ needs.main-root.outputs.is-main && !github.event.inputs.create_release }} + if: ${{ needs.main-root.outputs.is-main == 'true' && !github.event.inputs.create_release == 'false' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | @@ -111,7 +111,7 @@ jobs: gh release edit SNAPSHOT --draft=false - name: Create dated release - if: ${{ needs.main-root.outputs.is-main && github.event.inputs.create_release }} + if: ${{ needs.main-root.outputs.is-main == 'true' && github.event.inputs.create_release == 'true' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RELEASE_NOTES: ${{ inputs.release_notes }}