We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5dc1360 + 488d79d commit a82d4cfCopy full SHA for a82d4cf
1 file changed
.github/workflows/rust-cd.yml
@@ -210,13 +210,14 @@ jobs:
210
if: env.RELEASE_EXISTS != 'true'
211
env:
212
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
213
+ START_TAG: ${{ vars.START_TAG }}
214
run: |
215
set -euo pipefail
216
gh release create "$TAG" \
217
--draft \
218
--generate-notes \
219
--title "$TAG" \
- --notes-start-tag "$START_TAG" \
220
+ ${START_TAG:+--notes-start-tag "$START_TAG"} \
221
222
- name: Upload release assets
223
if: env.TEST_MODE != 'true'
0 commit comments