-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add a job to sync 3rd party container images (#546)
Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |