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 2172c40 commit 58757e3Copy full SHA for 58757e3
.github/workflows/candidate-release.yml
@@ -20,9 +20,10 @@ jobs:
20
- name: Create release
21
env:
22
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
+ BRANCH_NAME: ${GITHUB_REF##*/}
24
run: |
- echo ${GITHUB_REF##*/}
25
- gh release create ${GITHUB_REF##*/} \
+ echo $env:BRANCH_NAME
26
+ gh release create $env:BRANCH_NAME \
27
--repo="$GITHUB_REPOSITORY" \
- --title="${GITHUB_REF##*/}" \
28
+ --title="$env:BRANCH_NAME" \
29
--generate-notes
0 commit comments