Skip to content

Commit

Permalink
ci: Use a seperate command
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertGemmaJr committed Jun 14, 2024
1 parent 4817e23 commit 6332cd7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/workflow-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,11 @@ jobs:
- name: 📦 Make app installer
shell: bash
run: |
[ ${{ matrix.os }} == windows-latest ] && npm run make:windows
[ ${{ matrix.os }} == macOS-13 ] && npm run make:mac
[ ${{ matrix.os }} == ubuntu-latest ] && npm run make:linux
[ ${{ matrix.os }} == windows-latest ] && command='windows'
[ ${{ matrix.os }} == macOS-13 ] && command='mac'
[ ${{ matrix.os }} == ubuntu-latest ] && command='linux'
echo "npm run make:$command"
npm run make:$command
# Get package info
- name: Get package name and version
Expand Down

0 comments on commit 6332cd7

Please sign in to comment.