We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b9e06e commit 6dc6e14Copy full SHA for 6dc6e14
.github/workflows/build-client-deb.yml
@@ -26,15 +26,18 @@ jobs:
26
run: |
27
git clone https://github.com/bareos/bareos.git bareos-repo
28
29
+ - name: Extract version from VERSION File
30
+ id: vars
31
+ run: |
32
+ VERSION=$(cat VERSION | tr -d ' \n')
33
+ echo "VERSION=$VERSION" >> $GITHUB_ENV
34
+
35
- name: Checkout release
36
working-directory: ./bareos-repo
37
38
git fetch --all
- git checkout Release/24.0.4
- # Lire la version dans le fichier VERSION
- VERSION=$(cat VERSION)
- echo "VERSION=$VERSION" >> $GITHUB_ENV
-
39
+ git checkout Release/$VERSION
40
41
- name: Prepare debian/changelog
42
43
0 commit comments