2 Commits

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: runs:
using: "composite" using: "composite"
steps: steps:
- uses: actions/checkout@v5
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v2
@ -39,10 +41,10 @@ runs:
- name: push to latest branch - name: push to latest branch
run: | run: |
if ! git ls-remote --exit-code --heads origin latest; then if git ls-remote --exit-code --heads origin latest; then
git checkout -b latest
git push origin latest
else
git switch latest git switch latest
git merge latest git merge latest
else
git checkout -b latest
git push origin latest
fi fi