.gitea/workflows/qemu-image-mirror.yml hinzugefügt
Signed-off-by: MrUnknownDE <1+mrunknownde@noreply.git.mrunk.de>
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user