Skip to content

update github action #3

update github action

update github action #3

Workflow file for this run

name: Electron Publish
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Publish
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
npx electron-builder --publish=always