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 22ce71e commit 65b06b2Copy full SHA for 65b06b2
.github/workflows/release.yml
@@ -56,6 +56,10 @@ jobs:
56
fi
57
echo "hashes=$hashes" >> $GITHUB_OUTPUT
58
59
+ - name: Set tag output
60
+ id: tag
61
+ run: echo "tag_name=${GITHUB_REF#refs/*/}" >> "$GITHUB_OUTPUT"
62
+
63
provenance:
64
needs: [goreleaser]
65
permissions:
@@ -66,3 +70,5 @@ jobs:
66
70
with:
67
71
base64-subjects: "${{ needs.goreleaser.outputs.hashes }}"
68
72
upload-assets: true # upload to a new release
73
+ upload-tag-name: "${{ needs.release.outputs.tag_name }}"
74
+ draft-release: true
.goreleaser.yml
@@ -8,6 +8,9 @@ before:
8
- make build-manager-console
9
- go mod download
10
11
+sboms:
12
+ - artifacts: binary
13
14
builds:
15
- main: ./cmd/dfget
16
id: dfget
0 commit comments