Skip to content

Commit

Permalink
Upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorespert committed Jul 26, 2024
1 parent 90e6327 commit 23a9099
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ jobs:
run: bundle install
- name: deb
run: make x86_deb
- run: ls
- name: "Upload x86 deb package"
uses: actions/upload-artifact@v4
with:
name: x86-deb
path: 'reef-pi-*.deb'
if-no-files-found: error
retention-days: 30
pi:
name: "Build deb package for Rasspberry Pi"
runs-on: ubuntu-latest
Expand Down Expand Up @@ -66,6 +72,13 @@ jobs:
run: bundle install
- name: deb
run: make pi_deb
- name: "Upload pi deb package"
uses: actions/upload-artifact@v4
with:
name: pi-deb
path: 'reef-pi-*.deb'
if-no-files-found: error
retention-days: 30
zero:
name: "Build deb package for Rasspberry Pi Zero"
runs-on: ubuntu-latest
Expand Down Expand Up @@ -98,4 +111,10 @@ jobs:
run: bundle install
- name: deb
run: make pi_deb
- run: ls
- name: "Upload pi zero deb package"
uses: actions/upload-artifact@v4
with:
name: pi-zero-deb
path: 'reef-pi-*.deb'
if-no-files-found: error
retention-days: 30

0 comments on commit 23a9099

Please sign in to comment.