diff --git a/.github/workflows/create_dpkg.yml b/.github/workflows/create_dpkg.yml index d3fd91b..e2d4e5a 100644 --- a/.github/workflows/create_dpkg.yml +++ b/.github/workflows/create_dpkg.yml @@ -7,6 +7,8 @@ on: type: boolean raspbian-bullseye-armhf: type: boolean + raspbian-bookworm-armhf: + type: boolean raspberrypi-bullseye-arm64: type: boolean raspberrypi-bookworm-arm64: @@ -27,6 +29,7 @@ on: env: raspbian-buster-armhf: '{"image":"raspbian-buster-armhf","OS":"raspbian","DIST":"buster","ARCH":"armhf","FLAGS":""}' raspbian-bullseye-armhf: '{"image":"raspbian-bullseye-armhf","OS":"raspbian","DIST":"bullseye","ARCH":"armhf","FLAGS":"-- --binary-arch"}' + raspbian-bookworm-armhf: '{"image":"raspbian-bookworm-armhf","OS":"raspbian","DIST":"bookworm","ARCH":"armhf","FLAGS":"-- --binary-arch"}' raspberrypi-bullseye-arm64: '{"image":"raspberrypi-bullseye-arm64","OS":"raspberrypi","DIST":"bullseye","ARCH":"arm64","FLAGS":"-- --binary-arch"}' raspberrypi-bookworm-arm64: '{"image":"raspberrypi-bookworm-arm64","OS":"raspberrypi","DIST":"bookworm","ARCH":"arm64","FLAGS":"-- --binary-arch"}' debian-bullseye-amd64: '{"image":"debian-bullseye-amd64","OS":"debian","DIST":"bullseye","ARCH":"amd64","FLAGS":"-- --binary-arch"}' @@ -41,6 +44,7 @@ jobs: PKGCONF: pkgconf BUILD_raspbian-buster-armhf: ${{ github.event.inputs.raspbian-buster-armhf || 'true' }} BUILD_raspbian-bullseye-armhf: ${{ github.event.inputs.raspbian-bullseye-armhf || 'true' }} + BUILD_raspbian-bookworm-armhf: ${{ github.event.inputs.raspbian-bookworm-armhf || 'true' }} BUILD_raspberrypi-bullseye-arm64: ${{ github.event.inputs.raspberrypi-bullseye-arm64 || 'true' }} BUILD_raspberrypi-bookworm-arm64: ${{ github.event.inputs.raspberrypi-bookworm-arm64 || 'true' }} BUILD_debian-bullseye-amd64: ${{ github.event.inputs.debian-bullseye-amd64 || 'true' }} @@ -55,6 +59,10 @@ jobs: if: ${{ env.BUILD_raspbian-bullseye-armhf == 'true' }} run: echo -n '${{ env.raspbian-bullseye-armhf }},' >> $PKGCONF + - name: Add raspbian-bookworm-armhf + if: ${{ env.BUILD_raspbian-bookworm-armhf == 'true' }} + run: echo -n '${{ env.raspbian-bookworm-armhf }},' >> $PKGCONF + - name: Add raspberrypi-bullseye-arm64 if: ${{ env.BUILD_raspberrypi-bullseye-arm64 == 'true' }} run: echo -n '${{ env.raspberrypi-bullseye-arm64 }},' >> $PKGCONF diff --git a/.github/workflows/update_repo_rpi.yml b/.github/workflows/update_repo_rpi.yml index 24e3bc6..a7c35fc 100644 --- a/.github/workflows/update_repo_rpi.yml +++ b/.github/workflows/update_repo_rpi.yml @@ -57,6 +57,7 @@ jobs: run: | test ! -d $DPKGDIR/raspbian-buster-armhf || mv $DPKGDIR/raspbian-buster-armhf/* var/incoming/ test ! -d $DPKGDIR/raspbian-bullseye-armhf || mv $DPKGDIR/raspbian-bullseye-armhf/* var/incoming/ + test ! -d $DPKGDIR/raspbian-bookworm-armhf || mv $DPKGDIR/raspbian-bookworm-armhf/* var/incoming/ test ! -d $DPKGDIR/raspberrypi-bullseye-arm64 || mv $DPKGDIR/raspberrypi-bullseye-arm64/* var/incoming/ test ! -d $DPKGDIR/raspberrypi-bookworm-arm64 || mv $DPKGDIR/raspberrypi-bookworm-arm64/* var/incoming/ reprepro processincoming default