Skip to content

Commit dacd923

Browse files
authored
support structured branch name
Fix branch names like ft/foo or fix/bar
1 parent 6f29a78 commit dacd923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/check-release/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runs:
2929
else
3030
# e.g refs/head/foo or refs/tag/bar
3131
echo "Using GITHUB_REF: ${GITHUB_REF}"
32-
export RH_BRANCH=$(echo ${GITHUB_REF} | cut -d'/' -f 3)
32+
export RH_BRANCH=$(echo ${GITHUB_REF} | cut -d'/' -f 3-)
3333
fi
3434
3535
# Install Jupyter Releaser from git unless we are testing Releaser itself

0 commit comments

Comments
 (0)