Build App #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release App | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "22" | |
- name: Install dependencies | |
run: yarn install | |
- name: Build the app | |
run: yarn build | |
- name: Upload release artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Hime Display | |
path: | | |
dist/*.exe | |
dist/*.dmg |