Skip to content

Commit 0c78fae

Browse files
fix on-tags.yml
since the workflow triggers on a tag, we end-up in detached head, where we can not push to. (fixup) git: 'co' is not a git command. See 'git --help'
1 parent f6d70ad commit 0c78fae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/on-tags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id: create-branch-for-tag
2525
run: |
2626
set -x # enable traces
27-
git co -b ${{github.ref_name}}-release
27+
git checkout -b ${{github.ref_name}}-release
2828
2929
- name: create bosh release
3030
id: create-bosh-release

0 commit comments

Comments
 (0)