From df44d4fd6cd100b6abcdb7bd257d02cf557d3258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?mauro=20=F0=9F=A4=99?= Date: Thu, 4 Jul 2024 06:55:13 +0000 Subject: [PATCH] chore: Update alpha.yml workflow to use boolean strings for input conditions --- .github/workflows/alpha.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/alpha.yml b/.github/workflows/alpha.yml index 1ff2041cf..1cbe6142b 100644 --- a/.github/workflows/alpha.yml +++ b/.github/workflows/alpha.yml @@ -7,12 +7,12 @@ on: description: 'Create a new release for this build' required: false default: false - type: boolean + type: 'boolean' update_version: description: 'Update the version number' required: false default: true - type: boolean + type: 'boolean' jobs: @@ -74,7 +74,7 @@ jobs: echo "version=$(gluon get version | xargs)" >> $GITHUB_OUTPUT - uses: stefanzweifel/git-auto-commit-action@v4 - if: ${{ github.event.inputs.update_version == true }} + if: ${{ github.event.inputs.update_version == 'true' }} with: commit_message: 🔖 Update version to ${{ steps.data.outputs.version }} commit_user_name: Zen Browser Robot @@ -548,7 +548,7 @@ jobs: path: ./dist/update release: - if: ${{ github.event.inputs.create_release == true }} + if: ${{ github.event.inputs.create_release == 'true' }} permissions: write-all name: Release needs: [build-data, linux, source, windows, check-release]