Skip to content

Commit 6b53f31

Browse files
committed
fix github action
1 parent cf8f726 commit 6b53f31

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,22 @@ permissions:
1111
jobs:
1212
build:
1313
runs-on: macos-latest
14+
env:
15+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
1416

1517
steps:
1618
- uses: actions/checkout@v4
1719

1820
- uses: actions/setup-node@v4
1921
with:
20-
node-version: '20'
22+
node-version: '22'
2123
cache: 'npm'
2224

2325
- name: Install dependencies
2426
run: npm ci
2527

2628
- name: Build app
27-
run: npm run build:mac
29+
run: npm run build:mac -- --publish never
2830

2931
- name: Upload artifacts to release
3032
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)