Skip to content

Build, Lint, and Release #6

Build, Lint, and Release

Build, Lint, and Release #6

Workflow file for this run

name: Build and Release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: macos-latest
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
APP_VERSION: ${{ github.ref_name }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Build the app
run: npm run build
- name: Package the app
run: |
npx electron-builder --mac --universal --publish always