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 a40fdec commit 9f04236Copy full SHA for 9f04236
.github/workflows/build-client-deb.yml
@@ -34,10 +34,20 @@ jobs:
34
id: version
35
run: echo "VERSION=$(cat bareos-repo/VERSION)" >> $GITHUB_ENV
36
37
+ - name: Prepare debian/changelog
38
+ working-directory: ./bareos-repo
39
+ run: |
40
+ VERSION=$(cat VERSION)
41
+ cat > debian/changelog <<EOF
42
+bareos ($VERSION-1) stable; urgency=medium
43
+
44
+ * Automated build from GitHub Actions.
45
46
+ -- Libertech <contact@libertech.fr> $(date -R)
47
+EOF
48
- name: Build DEB packages
49
working-directory: ./bareos-repo
50
run: |
- cp CHANGELOG.md debian/changelog
51
# S'assurer que le changelog est là
52
ls -la debian
53
head -20 debian/changelog
0 commit comments