An Electron application with Vue
$ npm install$ npm run dev# For windows
$ npm run build:win
# For macOS
$ npm run build:mac
# For Linux
$ npm run build:linuxFor this we simply need to create a new tag and push it to the repository. Github Actions will take care of the rest.
$ git tag -a v1.0.0 -m "First release"
$ git push origin v1.0.0If you want to remove the tag locally:
$ git tag -d v1.0.0