Skip to content

Commit

Permalink
don't build universal for release (#2164)
Browse files Browse the repository at this point in the history
  • Loading branch information
stonerl authored Aug 29, 2023
1 parent ad140f5 commit 9d890de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: 'npm'
- run: npm ci
- name: Install necessary FlatPak tools
Expand Down Expand Up @@ -60,7 +60,9 @@ jobs:
if [[ "${{ matrix.os }}" != "macos-latest" ]]; then
npm run make
else
npm run make -- --arch=universal
# doesn't work with signing ATM
# npm run make -- --arch=universal
npm run make
fi
- uses: actions/upload-artifact@v3
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,7 @@ jobs:
if [[ "${{ matrix.os }}" != "macos-latest" ]]; then
npm run publish
else
npm run publish -- --arch=universal
# doesn't work with signing ATM
# npm run publish -- --arch=universal
npm run publish
fi

0 comments on commit 9d890de

Please sign in to comment.