Skip to content

Commit 521fd04

Browse files
committed
Update build-client-deb.yml
1 parent 5950904 commit 521fd04

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/build-client-deb.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ on:
99
jobs:
1010
build-deb:
1111
runs-on: ubuntu-22.04
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
include:
16+
- distro: bookworm
17+
image: debian:bookworm
18+
- distro: trixie
19+
image: debian:trixie
20+
1221

1322
steps:
1423
- name: Checkout repository
@@ -64,12 +73,12 @@ jobs:
6473
echo "--- contents ---"
6574
ls -lisa *.deb
6675
echo "--- end ---"
67-
mv bareos-${VERSION}-Linux.deb bareos-fd-${VERSION}-Linux.deb
76+
mv bareos-${VERSION}-Linux.deb bareos-fd-${VERSION}-${{ matrix.distro }}.deb
6877
6978
- name: Upload Filedaemon DEB
7079
uses: actions/upload-artifact@v4
7180
with:
72-
name: bareos-filedaemon-${{ env.VERSION }}
81+
name: bareos-filedaemon-${{ env.VERSION }}-${{ matrix.distro }}
7382
path: bareos-repo/build-client/*.deb
7483

7584
- name: Attach DEBs to GitHub Release

0 commit comments

Comments
 (0)