1 Commits
v1.4 ... v1.5

Author SHA1 Message Date
afec455c18 maybe incompatible syntax in the last action 2026-01-30 23:54:40 +01:00

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