aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-02-11 22:43:38 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-02-11 22:44:01 -0500
commit32f7a625356f20dc396bd072c47b19a148e20c19 (patch)
tree71518ad6f703142cca8621886a59b00fe3926581 /.github
parentTake minutes and seconds off auto-version (diff)
downloadjellyfin-packaging-32f7a625356f20dc396bd072c47b19a148e20c19.tar.gz
jellyfin-packaging-32f7a625356f20dc396bd072c47b19a148e20c19.tar.bz2
jellyfin-packaging-32f7a625356f20dc396bd072c47b19a148e20c19.zip
Switch to using codenames for releases
Will make life easier when dealing with reprepro later.
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