From 914c08933aaa9e2b16facd233cf569794f70c4fc Mon Sep 17 00:00:00 2001 From: Simon Davies Date: Tue, 28 Nov 2023 21:25:49 +0000 Subject: [PATCH] Update package.yml --- .github/workflows/package.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index bc575a9da..a84a5b031 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -131,11 +131,11 @@ jobs: run: yarn build_dist - name: Package (new codesign) - if: ${{ inputs.use-new-codesign == 'true' }} + if: ${{ inputs.use-new-codesign == true }} run: yarn package - name: Package (old codesign) - if: ${{ inputs.use-new-codesign == 'false' }} + if: ${{ inputs.use-new-codesign == false }} run: yarn package-old env: CSC_LINK: ${{ secrets.PFX_BASE64 }} # works directly with base64 string and not a path @@ -155,7 +155,7 @@ jobs: - name: Release uses: softprops/action-gh-release@v1 - if: ${{ inputs.release == 'true' }} + if: ${{ inputs.release == true }} with: files: | ./dist/vortex-setup-${{ steps.setOutputs.outputs.rawVersion }}.exe @@ -166,14 +166,14 @@ jobs: tag_name: ${{ steps.setOutputs.outputs.tagVersion }} - name: Deploy to Epic - if: ${{ inputs.deploy-epic == 'true' }} + if: ${{ inputs.deploy-epic == true }} shell: pwsh run: | echo "${{ steps.setOutputs.outputs.epicBuildString }}" - name: Create Unpacked Artifact uses: actions/upload-artifact@v3 - if: ${{ inputs.create-artifacts == 'true' }} + if: ${{ inputs.create-artifacts == true }} with: name: ${{ steps.setOutputs.outputs.artifactNameUnpacked }} path: ./dist/win-unpacked @@ -181,7 +181,7 @@ jobs: - name: Create Installer Artifact uses: actions/upload-artifact@v3 - if: ${{ inputs.create-artifacts == 'true' }} + if: ${{ inputs.create-artifacts == true }} with: name: ${{ steps.setOutputs.outputs.artifactNameInstaller }} path: |