Installers for Windows #57
Workflow file for this run
This file contains 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: Installers for Windows | |
on: | |
workflow_dispatch: # manually triggered | |
push: | |
tags: 'v*' | |
jobs: | |
build: | |
runs-on: windows-2019 | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build installers for Windows | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
# cache: 'npm' | |
- run: cd app/build; sh mustang-brand.sh | |
- run: cd app; npm install --legacy-peer-deps | |
- run: cd lib; npm install | |
- run: cd backend; npm install | |
- run: cd e2; npm install --legacy-peer-deps | |
- run: cd e2; npm run build:release:win | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Installers Windows | |
path: | | |
e2/dist/*.exe | |
e2/dist/*.msi |