Skip to content

Commit

Permalink
Update linux-appImage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
steveseguin authored Feb 2, 2025
1 parent a9cc2a5 commit 4cc0b90
Showing 1 changed file with 5 additions and 17 deletions.
22 changes: 5 additions & 17 deletions .github/workflows/linux-appImage.yml
Original file line number Diff line number Diff line change
@@ -1,62 +1,50 @@
name: Build Electron App for Linux

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}

runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18'

- name: Install dependencies
run: npm ci

- name: Build Electron app for Linux
run: npm run build:linux

- name: Archive Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: electron-linux-AppImage
path: dist/*.AppImage
retention-days: 1

- name: Build Electron appImage for ARM64
run: npm run build:arm64

- name: Archive Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: electron-arm64-AppImage
path: dist/*.AppImage
retention-days: 1

- name: Build Electron appImage for RPI
run: npm run build:rpi

- name: Archive Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: electron-rpi-AppImage
path: dist/*.AppImage
retention-days: 1




0 comments on commit 4cc0b90

Please sign in to comment.