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.
actions/checkout
gh
1 parent 9a5634f commit 6478489Copy full SHA for 6478489
.github/workflows/cd.yml
@@ -52,6 +52,12 @@ jobs:
52
id-token: write
53
attestations: write
54
steps:
55
+ - name: Checkout
56
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
57
+ with:
58
+ persist-credentials: false
59
+ fetch-depth: 0
60
+
61
- name: Download the built app
62
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
63
with:
@@ -85,7 +91,8 @@ jobs:
85
91
- name: Create and publish release
86
92
env:
87
93
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
94
+ GH_REF_NAME: ${{ github.ref_name }}
88
95
run: |
89
- gh release create ${{ github.ref_name }} \
96
+ gh release create $GH_REF_NAME \
90
97
--generate-notes \
98
upload/*
0 commit comments