Skip to content

[WIP] gha: Nightly packages #3

[WIP] gha: Nightly packages

[WIP] gha: Nightly packages #3

Workflow file for this run

name: nightly
on:
workflow_dispatch:
pull_request:
jobs:
generate:
strategy:
matrix:
arch:
- amd64
- arm64
# - armhf TODO
dist:
- {target: "centos-9", image: "quay.io/centos/centos:stream9"}
- {target: "debian-bullseye", image: "debian:bullseye"}
- {target: "debian-bookworm", image: "debian:bookworm"}
- {target: "fedora-39", image: "fedora:39"}
- {target: "fedora-40", image: "fedora:40"}
- {target: "raspbian-bullseye", image: "balenalib/rpi-raspbian:bullseye"}
- {target: "raspbian-bookworm", image: "balenalib/rpi-raspbian:bookworm"}
- {target: "ubuntu-focal", image: "ubuntu:focal"}
- {target: "ubuntu-jammy", image: "ubuntu:jammy"}
- {target: "ubuntu-noble", image: "ubuntu:noble"}
- {target: "rhel-8", image: "registry.access.redhat.com/ubi8/ubi"}
- {target: "rhel-9", image: "registry.access.redhat.com/ubi9/ubi"}
uses: ./.github/workflows/.nightly.yml
with:
arch: ${{ matrix.arch }}
target: ${{ matrix.dist.target }}
image: ${{ matrix.dist.image }}