From b4b6c43edf808e22c5b21f12daa16886e3229d3c Mon Sep 17 00:00:00 2001 From: MrUnknownDE <1+mrunknownde@noreply.git.mrunk.de> Date: Tue, 26 May 2026 16:19:10 +0200 Subject: [PATCH] =?UTF-8?q?.gitea/workflows/qemu-image-mirror.yml=20hinzug?= =?UTF-8?q?ef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MrUnknownDE <1+mrunknownde@noreply.git.mrunk.de> --- .gitea/workflows/qemu-image-mirror.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/qemu-image-mirror.yml diff --git a/.gitea/workflows/qemu-image-mirror.yml b/.gitea/workflows/qemu-image-mirror.yml new file mode 100644 index 0000000..4126d6b --- /dev/null +++ b/.gitea/workflows/qemu-image-mirror.yml @@ -0,0 +1,17 @@ +name: Mirror QEMU Image +on: + schedule: + - cron: '0 3 * * 1' # Jeden Montag 3 Uhr +jobs: + mirror: + runs-on: ubuntu-latest + steps: + - uses: docker/login-action@v3 + with: + registry: git.mrunk.de + username: ${{ secrets.REGISTRY_USERNAME }} + password: ${{ secrets.REGISTRY_TOKEN }} + - run: | + docker pull tonistiigi/binfmt:latest + docker tag tonistiigi/binfmt:latest git.mrunk.de/mrunknownde/binfmt:latest + docker push git.mrunk.de/mrunknownde/binfmt:latest \ No newline at end of file