Skip to content

Commit

Permalink
chore(ci): use cmd instead of bash
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Jan 19, 2025
1 parent ffe73fe commit 2785b70
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/actions/build-electron/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,11 @@ runs:
shell: bash
run: brew install python-setuptools
- name: Install dependencies
shell: bash
run: npm ci
- name: Update build info
shell: bash
run: npm run update-build-info
- name: Run electron-forge
shell: bash
run: npm run make-electron -- --arch=${{ inputs.arch }}
shell: cmd
run: |
npm ci
npm run update-build-info
npm run make-electron -- --arch=${{ inputs.arch }}
- uses: actions/upload-artifact@v4
with:
name: Artifacts
Expand Down

0 comments on commit 2785b70

Please sign in to comment.