Skip to content

Commit

Permalink
Fix artifact directory location
Browse files Browse the repository at this point in the history
  • Loading branch information
noisymime committed Apr 19, 2024
1 parent 175cb1d commit 5017d87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Artefact for linux build
path: dist/*.AppImage
path: UI/dist/*.AppImage

Build-for-mac:
name: Run npm on x64 macos
Expand All @@ -61,7 +61,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Artefact for Mac build
path: dist/*.dmg
path: UI/dist/*.dmg

Build-for-win:
name: Run npm on x64 Windows
Expand All @@ -85,4 +85,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Artefact for Win build
path: dist
path: UI/dist/*.exe
2 changes: 1 addition & 1 deletion UI/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "electron .",
"install": "electron-rebuild -f",
"package-mac": "electron-builder --mac --universal -c.mac.x64ArchFiles='*+(avrdude|libavrdude*.dylib)'",
"package-mac-workflow": "electron-builder --publish-never --mac --universal -c.mac.x64ArchFiles='*+(avrdude|libavrdude*.dylib)'",
"package-mac-workflow": "electron-builder --publish never --mac --universal -c.mac.x64ArchFiles='*+(avrdude|libavrdude*.dylib)'",
"package-win": "electron-builder --win",
"package-linux": "electron-builder --linux",
"package-linux-workflow": "electron-builder --publish never --linux",
Expand Down

0 comments on commit 5017d87

Please sign in to comment.