Skip to content

Commit

Permalink
tttt
Browse files Browse the repository at this point in the history
  • Loading branch information
dfunckt committed Dec 20, 2023
1 parent de7f863 commit e90c3fc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/actions/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,20 +130,22 @@ runs:
elif [[ "${RUNNER_OS}" == macOS ]]; then
PLATFORM=Darwin
BUILD_ARCHS="x64,arm64"
BUILD_ARCHS="x64 arm64"
SHA256SUM_BIN='shasum -a 256'
elif [[ "${RUNNER_OS}" == Windows ]]; then
PLATFORM=Windows
#BUILD_ARCHS="ia32,x64" -- distutils fails to build for ia32
#BUILD_ARCHS="ia32 x64" -- distutils fails to build for ia32
BUILD_ARCHS="x64"
else
echo "ERROR: unexpected runner OS: ${RUNNER_OS}"
exit 1
fi
npx electron-forge make --arch="${BUILD_ARCHS}"
for arch in ${BUILD_ARCHS}; do
npx electron-forge make --arch="${arch}"
done
echo "version=${APPLICATION_VERSION}" >> $GITHUB_OUTPUT
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"test-macos": "npm run lint && npm run test-gui && npm run test-shared",
"test-linux": "npm run lint && xvfb-run --auto-servernum npm run test-gui && xvfb-run --auto-servernum npm run test-shared",
"test": "echo npm run test-{linux,windows,macos}",
"preflight": "bash ./build/preflight.sh",
"package": "electron-forge package",
"start": "electron-forge start",
"make": "electron-forge make"
Expand Down

0 comments on commit e90c3fc

Please sign in to comment.