Skip to content

Commit

Permalink
Update package.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
insomnious authored Nov 28, 2023
1 parent 5d92c18 commit 914c089
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -166,22 +166,22 @@ 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
if-no-files-found: error

- 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: |
Expand Down

0 comments on commit 914c089

Please sign in to comment.