Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/debian-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
name: Build Debian packages
strategy:
matrix:
codename: ['buster', 'bullseye']
codename: ['bullseye', 'bookworm']

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v5

- name: Build package
run: bash .github/workflows/scripts/debian-package.sh ${{ matrix.codename }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/debian-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set -x
set -e

# A list of known Debian releases
knowncodenames=("stretch" "buster" "bullseye" "stable" "testing")
knowncodenames=("bullseye" "stable" "testing" "bookworm")

# We want exactly one argument: the name of the release
if (( $# != 1 ))
Expand Down
Loading