use macos-13 so x86 dmg is built #11
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: Build and Release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build_windows: | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v1 | |
- name: Install NodeJS | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install Python Deps | |
run: pip install -r requirements.txt | |
- name: Install NodeJS Deps | |
run: npm install | |
- name: Build Electron App | |
run: npm run dist | |
- name: Create Release | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
with: | |
draft: true | |
allowUpdates: true | |
replacesArtifacts: true | |
omitDraftDuringUpdate: true | |
omitNameDuringUpdate: true | |
artifacts: "dist/*-win-installer.exe,dist/*-win-portable.exe" | |
build_mac: | |
runs-on: macos-13 | |
permissions: | |
contents: write | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v1 | |
- name: Install NodeJS | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install Python Deps | |
run: pip install -r requirements.txt | |
- name: Install NodeJS Deps | |
run: npm install | |
- name: Build Electron App | |
run: npm run dist | |
- name: Create Release | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
with: | |
draft: true | |
allowUpdates: true | |
replacesArtifacts: true | |
omitDraftDuringUpdate: true | |
omitNameDuringUpdate: true | |
artifacts: "dist/*-mac.dmg" |