2023-05-12 00:59:36 +00:00
|
|
|
name: Generate Images
|
|
|
|
|
|
|
|
on:
|
2023-05-12 01:04:17 +00:00
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- 'tools/**'
|
2023-05-12 00:59:36 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
debian-images:
|
|
|
|
name: Debian Images
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: debootstrap
|
|
|
|
run: ./tools/qemu-debian-img/generate-images.sh
|
|
|
|
|
|
|
|
- name: Archive images
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: debian-images
|
|
|
|
path: /home/runner/work/out-of-tree/out-of-tree/tools/qemu-debian-img/*.tar.gz
|