Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/sync-3rdparty-images.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: 'Sync images and artifacts to ghcr'
on:
schedule:
- cron: '30 1 * * *'
push:
branches:
- main
workflow_dispatch:

permissions: read-all

jobs:
sync:
name: "images"
permissions:
contents: read
packages: write
runs-on: ubuntu-latest
steps:
- name: Log in to GitHub Docker Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Tag and push to ghcr
run: |
set -e
for n in ubuntu:latest alpine:edge centos:latest busybox:latest; do
dest="${{ github.repository_owner }}/$n"
docker trust inspect "$n"
docker pull $n
docker tag $n "$dest"
docker push $dest
done