Skip to content

Commit 58757e3

Browse files
⬆️ CI/CD: Updated
1 parent 2172c40 commit 58757e3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/candidate-release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ jobs:
2020
- name: Create release
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
BRANCH_NAME: ${GITHUB_REF##*/}
2324
run: |
24-
echo ${GITHUB_REF##*/}
25-
gh release create ${GITHUB_REF##*/} \
25+
echo $env:BRANCH_NAME
26+
gh release create $env:BRANCH_NAME \
2627
--repo="$GITHUB_REPOSITORY" \
27-
--title="${GITHUB_REF##*/}" \
28+
--title="$env:BRANCH_NAME" \
2829
--generate-notes

0 commit comments

Comments
 (0)