mirror of
https://github.com/linux-msm/bootrr.git
synced 2026-02-25 13:12:03 -08:00
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>
20 lines
406 B
YAML
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
|