Release 1.15 #19
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: Arm Packages build | |
on: | |
push: | |
branches: | |
- release | |
env: | |
USE_SYSTEM_FPM: true | |
jobs: | |
build: | |
runs-on: buildjet-2vcpu-ubuntu-2204-arm | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.17.1' | |
- run: sudo apt update && sudo apt-get install --no-install-recommends -y ruby-full libarchive-tools | |
- run: sudo gem install fpm -v 1.15 | |
- run: npm install npm@9 -g | |
- run: npm install | |
- run: node_modules/.bin/electron-builder build | |
env: | |
GH_TOKEN: ${{ secrets.github_token }} |