2 Commits
v1.4 ... v1.6

Author SHA1 Message Date
915a2fc67e maybe needs action checkout 2026-01-31 00:51:21 +01:00
afec455c18 maybe incompatible syntax in the last action 2026-01-30 23:54:40 +01:00

View File

@ -20,6 +20,8 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@v5
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
@ -39,10 +41,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