Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create build for x86 #330

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
command: make:intel
tag: x64
dist: /apps/desktop/out/make/squirrel.windows/x64/*Setup.exe
- os: windows-latest
command: make:x86
tag: x86
dist: /apps/desktop/out/make/squirrel.windows/ia32/*Setup.exe
- os: macos-13
command: make:intel
tag: x64
Expand Down Expand Up @@ -100,7 +104,7 @@ jobs:

- name: Upload zip distributives to artifacts
uses: actions/upload-artifact@v4
if: runner.os == 'Windows'
if: runner.os == 'Windows' && matrix.tag == 'x64'
with:
name: Tonkeeper Desktop ${{ runner.os }} x64 archive
retention-days: 10
Expand Down
2 changes: 2 additions & 0 deletions apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@
"make": "electron-forge make",
"make:arm": "electron-forge make --arch=arm64",
"make:intel": "electron-forge make --arch=x64",
"make:x86": "electron-forge make --arch=ia32",
"make:universal": "electron-forge make --arch=universal",
"publish": "electron-forge publish",
"publish:arm": "electron-forge publish --arch=arm64",
"publish:intel": "electron-forge publish --arch=x64",
"publish:x86": "electron-forge publish --arch=ia32",
"publish:universal": "electron-forge publish --arch=universal",
"lint": "eslint --ext .ts,.tsx .",
"build": "yarn make",
Expand Down
Loading