You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 29, 2024. It is now read-only.
I have noticed this on many of your repos. instead of using builtin electron-buider features. you create a zip, download an old deb, and then manually repackage it.
electron-buillder can be used directly to make the deb with everything necessary (.desktop file, control, etc)
npx electron-builder --linux deb --armv7l --publish never
electron-builder can natively produce deb, rpm, zips, and appimages for linux
the CI becomes very simple:
npm install
npx electron-builder --linux deb --armv7l --publish never
# npx electron-builder --linux deb --arm64 --publish never
and then publish the deb from the dist folder (rename it if you need to)