File tree Expand file tree Collapse file tree 1 file changed +5
-17
lines changed
Expand file tree Collapse file tree 1 file changed +5
-17
lines changed Original file line number Diff line number Diff line change 11name : Build Electron App for Linux
2-
32on :
43 push :
54 branches :
65 - master
76 pull_request :
87 branches :
98 - master
10-
119jobs :
1210 build :
1311 env :
1412 GH_TOKEN : ${{ secrets.GH_TOKEN }}
1513
1614 runs-on : ubuntu-latest
17-
1815 steps :
1916 - name : Checkout code
20- uses : actions/checkout@v3
21-
17+ uses : actions/checkout@v4
2218 - name : Set up Node.js
23- uses : actions/setup-node@v3
19+ uses : actions/setup-node@v4
2420 with :
2521 node-version : ' 18'
26-
2722 - name : Install dependencies
2823 run : npm ci
29-
3024 - name : Build Electron app for Linux
3125 run : npm run build:linux
3226
3327 - name : Archive Artifacts
34- uses : actions/upload-artifact@v3
28+ uses : actions/upload-artifact@v4
3529 with :
3630 name : electron-linux-AppImage
3731 path : dist/*.AppImage
3832 retention-days : 1
3933
4034 - name : Build Electron appImage for ARM64
4135 run : npm run build:arm64
42-
4336 - name : Archive Artifacts
44- uses : actions/upload-artifact@v3
37+ uses : actions/upload-artifact@v4
4538 with :
4639 name : electron-arm64-AppImage
4740 path : dist/*.AppImage
4841 retention-days : 1
4942
5043 - name : Build Electron appImage for RPI
5144 run : npm run build:rpi
52-
5345 - name : Archive Artifacts
54- uses : actions/upload-artifact@v3
46+ uses : actions/upload-artifact@v4
5547 with :
5648 name : electron-rpi-AppImage
5749 path : dist/*.AppImage
5850 retention-days : 1
59-
60-
61-
62-
You can’t perform that action at this time.
0 commit comments