Update action.yml

This commit is contained in:
Guillaume Falourd 2021-11-18 11:52:48 -03:00 committed by GitHub
parent 601414734b
commit 033edba65c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,8 +54,10 @@ runs:
steps:
- name: Git push and commit
run: |
CURRENT_BRANCH=${GITHUB_REF##*/}
echo $CURRENT_BRANCH
CURRENT_BRANCH=${GITHUB_REF}
case $CURRENT_BRANCH in "refs/heads/"*)
CURRENT_BRANCH=$(echo "$CURRENT_BRANCH" | sed "s@refs/heads/@@")
esac
TARGET_BRANCH=${{ inputs.target_branch }}
case $TARGET_BRANCH in "refs/heads/"*)
TARGET_BRANCH=$(echo "$TARGET_BRANCH" | sed "s@refs/heads/@@")