aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release-build.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml
index 2eea8fe..0dc23c8 100644
--- a/.github/workflows/release-build.yaml
+++ b/.github/workflows/release-build.yaml
@@ -16,9 +16,9 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
- version:
- - 11
- - 12
+ release:
+ - bullseye
+ - bookworm
arch:
- amd64
- arm64
@@ -37,4 +37,4 @@ jobs:
- name: "Run builder for Debian ${{ matrix.version }} ${{ matrix.arch }}"
run: |-
- sudo ./build.py ${{ inputs.version }} debian ${{ matrix.arch }} ${{ matrix.version }}
+ sudo ./build.py ${{ inputs.version }} debian ${{ matrix.arch }} ${{ matrix.release }}
bgstack15