We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f2bb2c5 + 479db83 commit 6d41f77Copy full SHA for 6d41f77
.github/workflows/release.yml
@@ -30,10 +30,7 @@ jobs:
30
- name: "Prepare the release note"
31
working-directory: go/src/github.com/lima-vm/sshocker
32
run: |
33
- tag="${GITHUB_REF##*/}"
34
cat << EOF | tee /tmp/release-note.txt
35
- ${tag}
36
-
37
#### Changes
38
(To be documented)
39
@@ -54,6 +51,4 @@ jobs:
54
51
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55
52
56
53
tag="${GITHUB_REF##*/}"
57
- asset_flags=()
58
- for f in ./bin/* /tmp/SHA256SUMS; do asset_flags+=("-a" "$f"); done
59
- hub release create "${asset_flags[@]}" -F /tmp/release-note.txt --draft "${tag}"
+ gh release create -F /tmp/release-note.txt --draft "${tag}" --title "${tag}" ./bin/* /tmp/SHA256SUMS
0 commit comments