Skip to content

Commit

Permalink
switch "Make app" step powershell => bash in linux build action
Browse files Browse the repository at this point in the history
  • Loading branch information
telamonian committed Aug 30, 2024
1 parent 7a2d9f5 commit 03e7c43
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/actions/build/linux/app/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,10 @@ runs:
yarn make:assets:amd
shell: bash
- name: Make app
shell: powershell
shell: bash
env:
DIGICERT_FINGERPRINT: ${{ inputs.DIGICERT_FINGERPRINT }}
DEBUG: electron-forge:*
PUBLISH: ${{ inputs.sign-and-publish }}
GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }}
run: yarn run ${{inputs.sign-and-publish == true && 'publish' || 'make'}} -- ${{inputs.build-targets}}

run: yarn run $([ ${{inputs.sign-and-publish}} == true ] && echo 'publish' || echo 'make') -- ${{inputs.build-targets}}

0 comments on commit 03e7c43

Please sign in to comment.