Skip to content

Commit

Permalink
Create build for x86
Browse files Browse the repository at this point in the history
Update package config

Update dist

Do not upload zip for x86
  • Loading branch information
KuznetsovNikita committed Dec 11, 2024
1 parent 8ae7736 commit 2015c63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
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

0 comments on commit 2015c63

Please sign in to comment.