Skip to content

Commit

Permalink
github: Introduce workflow for generating bootrr.cpio
Browse files Browse the repository at this point in the history
Signed-off-by: Bjorn Andersson <[email protected]>
  • Loading branch information
quic-bjorande committed May 8, 2024
1 parent 7ce7fd4 commit ffc95b3
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/generate-cpio-archive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: generate-cpio-archive
on: push

jobs:
generate-cpio:
runs-on: ubuntu-latest
steps:
- name: checkout master
uses: actions/checkout@v4
- name: make cpio.gz
run: |
make cpio.gz
- name: archive bootrr.cpio.gz
uses: actions/upload-artifact@v4
with:
name: bootrr.cpio.gz
path: bootrr.cpio.gz

0 comments on commit ffc95b3

Please sign in to comment.