3 Commits

Author SHA1 Message Date
d4331bbef4 merge with master not latest 2026-01-31 01:14:19 +01:00
e81cd81797 always push latest to origin 2026-01-31 01:10:24 +01:00
9423cbc331 checkout get all branches 2026-01-31 01:04:07 +01:00

View File

@ -21,6 +21,9 @@ runs:
using: "composite" using: "composite"
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v5
with:
fetch-depth: 0 # required to see all branches
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v2
@ -43,8 +46,8 @@ runs:
run: | run: |
if git ls-remote --exit-code --heads origin latest; then if git ls-remote --exit-code --heads origin latest; then
git switch latest git switch latest
git merge latest git merge master
else else
git checkout -b latest git checkout -b latest
git push origin latest
fi fi
git push origin latest