Skip to content

Commit

Permalink
Add registry migration workflow
Browse files Browse the repository at this point in the history
Issue: PTFE-1367
  • Loading branch information
francoisferrand committed Apr 10, 2024
0 parents commit f13b7b9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/migrate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: migrate

on:
push:
branches-ignore:
- development/**
- q/*/**

jobs:
build:
runs-on: ubuntu-latest
steps:

- name: Sync ${{ github.event.repository.name }}
run: |
docker run --rm quay.io/skopeo/stable:v1.15.0 sync \
--src docker --dest docker --all --preserve-digests --retry-times 3 \
--src-creds ${{ secrets.REGISTRY_LOGIN }}:${{ secrets.REGISTRY_PASSWORD }} \
--dest-creds ${{ github.repository_owner }}:${{ github.token }} \
registry.scality.com/${{ github.event.repository.name }}/${{ github.event.repository.name }} \
ghcr.io/scality/

0 comments on commit f13b7b9

Please sign in to comment.