Files
bootrr/.github/workflows/generate-cpio-archive.yml
Bjorn Andersson 57921a19b2 github: Introduce workflow for generating bootrr.cpio
For kernel CI purposes it's convenient to always have access to the
latest bootrr.cpio archive. Introduce a workflow that composes this and
generates an artifact.

Signed-off-by: Bjorn Andersson <quic_bjorande@quicinc.com>
2024-05-08 18:15:45 +02:00

20 lines
406 B
YAML

name: generate-cpio-archive
on:
push:
branches: master
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