Skip to content

Commit 2ca030e

Browse files
committed
fix debian package build workflow
1 parent 1b41716 commit 2ca030e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/debian-packaging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
name: Build Debian packages
1717
strategy:
1818
matrix:
19-
codename: ['buster', 'bullseye']
19+
codename: ['bullseye', 'bookworm']
2020

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v5
2424

2525
- name: Build package
2626
run: bash .github/workflows/scripts/debian-package.sh ${{ matrix.codename }}

.github/workflows/scripts/debian-package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set -x
1010
set -e
1111

1212
# A list of known Debian releases
13-
knowncodenames=("stretch" "buster" "bullseye" "stable" "testing")
13+
knowncodenames=("bullseye" "stable" "testing" "bookworm")
1414

1515
# We want exactly one argument: the name of the release
1616
if (( $# != 1 ))

0 commit comments

Comments
 (0)