Revert "Fix checking out branch names with / chars"

This commit is contained in:
Stefan Zweifel
2020-10-24 11:28:52 +02:00
committed by GitHub
parent 4bab898d25
commit 1e826be61c
2 changed files with 21 additions and 21 deletions

View File

@@ -44,7 +44,7 @@ _switch_to_branch() {
git fetch;
# Switch to branch from current Workflow run
git checkout "$INPUT_BRANCH" --;
git checkout $INPUT_BRANCH;
}
_add_files() {