We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a4b9e4 commit 8bbc04cCopy full SHA for 8bbc04c
2 files changed
.github/workflows/release.yml
@@ -1,8 +1,6 @@
1
name: Make a new release
2
on:
3
push:
4
- branches:
5
- - pkg
6
tags:
7
- v*.*.*
8
@@ -57,8 +55,6 @@ jobs:
57
55
with:
58
56
draft: true
59
generate_release_notes: true
60
- package_name: pkg
61
- tag_name: pkg
62
63
create-sbom:
64
needs:
@@ -79,8 +75,7 @@ jobs:
79
75
# Store the version, stripping any v-prefix
80
76
- name: Write release version
81
77
run: |
82
- # VERSION=${GITHUB_REF_NAME#v}
83
- VERSION=2.0.0
78
+ VERSION=${GITHUB_REF_NAME#v}
84
echo Version: $VERSION
85
echo "VERSION=$VERSION" >> $GITHUB_ENV
86
linux/preinst
@@ -8,5 +8,5 @@ if ! id -u ${USERNAME} >/dev/null 2>&1; then
fi
9
10
mkdir -p /etc/defguard
11
-chown ${USERNAME}:${USERNAME} /etc/defguard
+chown -R ${USERNAME}:${USERNAME} /etc/defguard
12
chmod 750 /etc/defguard
0 commit comments