From 8a44e6b29d2d97711b8476f0cb5208e170bc7748 Mon Sep 17 00:00:00 2001 From: RobertGemmaJr Date: Fri, 14 Jun 2024 15:24:37 -0400 Subject: [PATCH] ci: Update make command --- .github/workflows/workflow-package.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/workflow-package.yml b/.github/workflows/workflow-package.yml index 483209e56..3cdf143d1 100644 --- a/.github/workflows/workflow-package.yml +++ b/.github/workflows/workflow-package.yml @@ -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