Skip to content

Try updating action #28

Try updating action

Try updating action #28

Workflow file for this run

name: Publish Builds
on:
push:
branches:
- master
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13, ubuntu-20.04, windows-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v1
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v4
with:
node-version: 14
- name: Install distutils on macOS
if: runner.os == 'macOS'
run: |
python3 -m ensurepip
python3 -m pip install --upgrade pip setuptools
- run: npm i -g npm@7
- run: npm ci
- run: npm run electron:build -p always
env:
GH_TOKEN: ${{ secrets.github_token }}