Skip to content

Release App

Release App #6

Workflow file for this run

name: Release App
on:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os:
[
{ name: 'windows', image: 'windows-2019' },
]
runs-on: ${{ matrix.os.image }}
steps:
- name: Github checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- name: Publish app
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: npm run publish