Skip to content

Commit

Permalink
nudge?
Browse files Browse the repository at this point in the history
  • Loading branch information
steveseguin committed Nov 4, 2024
1 parent 2f1953e commit f485b36
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/linux-appImage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,37 @@ jobs:
node-version: '18'

- name: Install dependencies
run: npm install
run: npm ci

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

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

- name: Build Electron deb for RPI
run: npm run build:rpideb

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

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

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



Expand Down

0 comments on commit f485b36

Please sign in to comment.