Skip to content

Release app

Release app #2

Workflow file for this run

name: Release app
on:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os:
- name: Linux
image: ubuntu-latest
- name: macOS
image: macos-latest
- name: Windows
image: windows-latest
runs-on: ${{ matrix.os.image }}
name: Build (${{ matrix.os.name }})
steps:
- name: Github checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- run: yarn install --frozen-lockfile
- name: Publish app
run: yarn run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}