Update package.json #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: electron-builder | |
on: | |
push: | |
branches-ignore: | |
- "**" | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
env: | |
NODE_VERSION: 16.x | |
jobs: | |
build-linux: | |
name: Create AppImage for Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- run: npm install | |
- run: npm run electron:icons | |
- run: npm run electron:build -- --linux -p always | |
env: | |
GH_TOKEN: ${{ secrets.PUBLISHING_TOKEN }} | |
build-macos: | |
needs: build-linux | |
name: Create DMG for MacOS | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- run: npm install | |
- run: npm run electron:icons | |
- run: npm run electron:build -- --mac -p always | |
env: | |
GH_TOKEN: ${{ secrets.PUBLISHING_TOKEN }} | |
build-windows: | |
needs: build-macos | |
name: Create EXE for Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- run: npm install | |
- run: npm run electron:icons | |
- run: npm run electron:build -- --win -p always | |
env: | |
GH_TOKEN: ${{ secrets.PUBLISHING_TOKEN }} |