Skip to content

Commit cce7334

Browse files
committed
Update build-client-deb.yml
1 parent 1e73508 commit cce7334

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
3030
- name: Clone Bareos
3131
run: |
32-
git clone https://github.com/bareos/bareos.git
32+
git clone https://github.com/bareos/bareos.git bareos-repo
3333
- name: checkout release
34-
working-directory: ./bareos
34+
working-directory: ./bareos-repo
3535
run: |
3636
git fetch --all
3737
git checkout Release/24.0.4 # ex: Release/24.0.4
@@ -42,7 +42,7 @@ jobs:
4242
id: vars
4343
run: echo "VERSION=${GITHUB_REF_NAME#Release/}" >> $GITHUB_ENV
4444
- name: Build Bareos Client
45-
working-directory: bareos/build
45+
working-directory: bareos-repo/build
4646
run: |
4747
cmake -Dclient-only=ON \
4848
-DCMAKE_INSTALL_PREFIX=/usr \
@@ -63,11 +63,11 @@ jobs:
6363
uses: actions/upload-artifact@v4
6464
with:
6565
name: bareos-client-deb-{{ matrix.distro }}
66-
path: bareos/build/*.deb
66+
path: bareos-repo/build/*.deb
6767

6868
- name: Attach DEB to GitHub Release
6969
uses: softprops/action-gh-release@v1
7070
if: startsWith(github.ref, 'refs/tags/')
7171
with:
72-
files: bareos/build/*.deb
72+
files: bareos-repo/build/*.deb
7373

0 commit comments

Comments
 (0)