also build 22.11 in ci again

This commit is contained in:
Jörg Thalheim 2022-12-16 15:54:13 +01:00
parent aa4a386d5d
commit 47d1d6f964

View file

@ -6,6 +6,12 @@ on:
- cron: '51 2 * * 0'
jobs:
images:
strategy:
fail-fast: false
matrix:
tag:
- nixos-22.11
- nixos-unstable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@ -13,6 +19,6 @@ jobs:
with:
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz
- name: Build image
run: ./build-images.sh
run: ./build-images.sh "${{matrix.tag}}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}