We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f76b541 commit e069a71Copy full SHA for e069a71
.github/workflows/candidate-release.yml
@@ -20,9 +20,11 @@ jobs:
20
- name: Create release
21
env:
22
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
- TAG: ${GITHUB_REF##*/}
+ BRANCH_NAME: ${GITHUB_REF##*/}
24
run: |
25
- gh release create 0.1.0-dev-1 \
+ echo ${BRANCH_NAME}
26
+ echo $BRANCH_NAME
27
+ gh release create ${BRANCH_NAME} \
28
--repo="$GITHUB_REPOSITORY" \
- --title="${TAG}" \
29
+ --title="${BRANCH_NAME}" \
30
--generate-notes
0 commit comments