Skip to content

Commit

Permalink
ci: Fix mac again
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertGemmaJr committed Jun 17, 2024
1 parent dfc863b commit 4458fe1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
elif [[ ${{ matrix.os }} == macOS-latest ]]; then
path="out/make/${packageName}-${packageVersion}-arm64.dmg"
elif [[ ${{ matrix.os }} == ubuntu-latest ]]; then
path="out/make/deb/x64/${packageName}_${packageVersion}_amd64.deb"
path="out/make/deb/x64/${packageName}_${packageVersion}_arm64.deb"
fi
echo path=$path >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"make": "electron-forge make",
"make:windows": "electron-forge make --arch x64 --targets @electron-forge/maker-squirrel",
"make:mac-x64": "electron-forge make --arch x64 --targets @electron-forge/maker-dmg",
"make:mac-arm64": "electron-forge make --arch x64 --targets @electron-forge/maker-dmg",
"make:mac-arm64": "electron-forge make --arch arm64 --targets @electron-forge/maker-dmg",
"make:linux": "electron-forge make --arch x64 --targets @electron-forge/maker-deb",
"cli": "node cli.mjs",
"commit": "git-cz",
Expand Down

0 comments on commit 4458fe1

Please sign in to comment.