maybe incompatible syntax in the last action

This commit is contained in:
2026-01-30 23:54:40 +01:00
parent 0188e62126
commit afec455c18

View File

@ -39,10 +39,10 @@ runs:
- name: push to latest branch
run: |
if ! git ls-remote --exit-code --heads origin latest; then
git checkout -b latest
git push origin latest
else
if git ls-remote --exit-code --heads origin latest; then
git switch latest
git merge latest
else
git checkout -b latest
git push origin latest
fi