chore: Update release.yml, install Python and Xcode Command Line Tool… #59
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: Release | |
on: | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- "README.md" | |
- "README-*.md" | |
- ".github/ISSUE_TEMPLATE/*" | |
jobs: | |
publish_on_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Node v20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Install electron-builder | |
run: npm i electron-builder -g | |
- name: Publish | |
env: | |
GH_TOKEN: ${{ secrets.TOKEN }} | |
run: npm run publish:linux | |
publish_on_win: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Node v20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Install electron-builder | |
run: npm i electron-builder -g | |
- name: Publish | |
env: | |
GH_TOKEN: ${{ secrets.TOKEN }} | |
run: npm run publish:win | |
publish_on_macos: | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Node v20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install Python | |
run: brew install python | |
- name: Install Xcode Command Line Tools | |
run: xcode-select --install | |
- name: Install dependencies | |
run: npm ci | |
- name: Install dmg-license | |
run: npm i dmg-license | |
- name: Install electron-builder | |
run: npm i electron-builder -g | |
- name: Publish | |
env: | |
GH_TOKEN: ${{ secrets.TOKEN }} | |
run: npm run publish:mac --verbose |