Skip to content

build: update version #5

build: update version

build: update version #5

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [arm64]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install yarn
run: npm install --global yarn
- name: Install dependencies
run: yarn install
- name: Publish release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
yarn electron-forge publish --arch arm64