From 33a14fb56fce1d2ffa6ff637599fa074415440da Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Fri, 7 Nov 2025 14:21:11 -0500 Subject: [PATCH] actually check boolean values --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index b929923..eb4c8ee 100644 --- a/action.yml +++ b/action.yml @@ -37,7 +37,7 @@ runs: - name: Move package uses: https://git.sanin.dev/packages_test/pkgbase-yaml-parser@master - if: ${{ steps.parsed.outputs.move }} + if: ${{ steps.parsed.outputs.move == 'true' }} with: mode: move parsed-data: ${{ steps.parsed.outputs.parsed-data }} @@ -46,7 +46,7 @@ runs: - name: Create publish script shell: bash - if: ${{ steps.parsed.outputs.build }} + if: ${{ steps.parsed.outputs.build == 'true' }} run: | echo "#!/bin/bash echo '📤️ Uploading package to ${{ gitea.server_url }} ...' @@ -62,14 +62,14 @@ runs: - name: Build package uses: https://git.sanin.dev/packages_test/build-publish/@build - if: ${{ steps.parsed.outputs.build }} + if: ${{ steps.parsed.outputs.build == 'true' }} with: username: "${{ inputs.username }}" token: ${{ inputs.token }} - name: Delete package uses: https://git.sanin.dev/packages_test/pkgbase-yaml-parser@master - if: ${{ steps.parsed.outputs.delete }} + if: ${{ steps.parsed.outputs.delete == 'true' }} with: mode: delete parsed-data: ${{ steps.parsed.outputs.parsed-data }}