Skip to content

Commit e069a71

Browse files
⬆️ CI/CD: Updated
1 parent f76b541 commit e069a71

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/candidate-release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ jobs:
2020
- name: Create release
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23-
TAG: ${GITHUB_REF##*/}
23+
BRANCH_NAME: ${GITHUB_REF##*/}
2424
run: |
25-
gh release create 0.1.0-dev-1 \
25+
echo ${BRANCH_NAME}
26+
echo $BRANCH_NAME
27+
gh release create ${BRANCH_NAME} \
2628
--repo="$GITHUB_REPOSITORY" \
27-
--title="${TAG}" \
29+
--title="${BRANCH_NAME}" \
2830
--generate-notes

0 commit comments

Comments
 (0)