Skip to content

Commit

Permalink
fix: export on x64 for forge publish Windows #28
Browse files Browse the repository at this point in the history
  • Loading branch information
hrenaud committed Jul 26, 2024
1 parent 029553a commit 8256ca2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion electron-app/ecoindex-app/.release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@
"./out/make/zip/darwin/arm64/*.zip",
"./out/make/*.dmg",
"./out/make/zip/win32/arm64/*.zip",
"./out/make/zip/win32/x64/*.zip",
"./out/make/squirrel.windows/arm64/*.exe"
]
},
"hooks": {
"before:bump": "rm -rf ./out",
"after:bump": "npm run make -- --platform=win32 && npm run make -- --plateform=darwin",
"after:bump": "sh make.sh",
"after:git:release": "echo After git push, before github release",
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
Expand Down
4 changes: 4 additions & 0 deletions electron-app/ecoindex-app/make.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
rm -rf out/* --y
npm run make -- --arch=x64 --platform=win32
npm run make -- --arch=arm64 --platform=win32
npm run make -- --arch=arm64 --plateform=darwin

0 comments on commit 8256ca2

Please sign in to comment.