Skip to content

Commit

Permalink
ci: Update make command
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertGemmaJr committed Jun 14, 2024
1 parent 393e18b commit 8a44e6b
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/workflow-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,15 +195,21 @@ jobs:
mode: ${{github.event.inputs.setting}}

# Package the app and make the installers
- name: 📦 Make app installer - Windows
if: startsWith(matrix.os, 'windows')
run: npm run make:windows
- name: 📦 Make app installer - Mac
if: startsWith(matrix.os, 'mac')
run: npm run make:mac
- name: 📦 Make app installer - Linux
if: startsWith(matrix.os, 'ubuntu')
run: npm run make:linux
# - name: 📦 Make app installer - Windows
# if: startsWith(matrix.os, 'windows')
# run: npm run make:windows
# - name: 📦 Make app installer - Mac
# if: startsWith(matrix.os, 'mac')
# run: npm run make:mac
# - name: 📦 Make app installer - Linux
# if: startsWith(matrix.os, 'ubuntu')
# run: npm run make:linux

- name: 📦 Make app installer
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
# Get package info
- name: Get package name and version
Expand Down

0 comments on commit 8a44e6b

Please sign in to comment.