fix node-gyp build #142
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/release | ||
on: push | ||
jobs: | ||
release: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-latest, ubuntu-latest, windows-latest] | ||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v1 | ||
- name: Install Node.js, NPM and Yarn | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 20 | ||
- name: Install other prereqs | ||
run: | | ||
if [ "$RUNNER_OS" == "MacOS" ]; then | ||
brew install cairo | ||
brew install pango | ||
fi | ||
shell: bash | ||
- name: Install dependencies | ||
run: npm install && npm run install | ||
- name: Release Electron app | ||
run: npm run package | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.github_token }} |