1.17.2 #78
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: Packages build | |
on: | |
push: | |
branches: | |
- release | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
fail-fast: false | |
steps: | |
- name: run on mac | |
if: matrix.os == 'macos-latest' | |
run: sudo xcode-select -s /Library/Developer/CommandLineTools | |
- name: run on linux | |
if: matrix.os == 'ubuntu-latest' | |
run: sudo apt-get install libarchive-tools | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20.18.1' | |
- run: pip install setuptools | |
- run: npm install npm -g | |
- run: npm install | |
- run: node_modules/.bin/electron-builder build | |
env: | |
GH_TOKEN: ${{ secrets.github_token }} |