Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
35 lines
803 B
YAML
35 lines
803 B
YAML
name: Build SD image for Raspberry Pi 5
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-sd-image:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Install QEMU
|
|
run: sudo apt-get install qemu-user-static
|
|
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@v31
|
|
with:
|
|
extra_nix_config: |
|
|
system = aarch64-linux
|
|
|
|
- name: Build SD image
|
|
run: nix build -L '.#nixosConfigurations.pochita-sd.config.system.build.sdImage'
|
|
|
|
- name: Zip the Resulting SD image
|
|
run: |
|
|
mkdir -p sd-image
|
|
cp -r result/* sd-image
|
|
zip -r sd-image.zip sd-image
|
|
|
|
- name: Upload SD image
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: sd-image
|
|
|