Skip to content

Commit ee18689

Browse files
committed
Dont allow underscore in the app tag.
1 parent af64754 commit ee18689

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ runs:
5252
- name: Get url friendly branch name
5353
shell: bash
5454
run: |
55-
url=$(sed -E 's#refs/[^\/]*/##;s/[^a-zA-Z0-9_]+/-/g;s/-+/-/g;s/^-*//;s/-*$//' <<<"${GITHUB_HEAD_REF}")
55+
url=$(sed -E 's#refs/[^\/]*/##;s/[^a-zA-Z0-9]+/-/g;s/-+/-/g;s/^-*//;s/-*$//' <<<"${GITHUB_HEAD_REF}")
5656
tolower=${url,,}
5757
reduce=$(echo $tolower | cut -c -20)
5858
echo "BRANCH_URL=$(echo ${reduce%-})" >> $GITHUB_ENV

0 commit comments

Comments
 (0)