Skip to content

Commit

Permalink
🤖 add workflow change for images. (#84)
Browse files Browse the repository at this point in the history
Signed-off-by: sealos-ci-robot <[email protected]>
  • Loading branch information
sealos-ci-robot authored Aug 31, 2024
1 parent 4f98cea commit ce22d4e
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/auto-sync-sealos-cloud-devbox-controller.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: auto-sync-sealos-cloud-devbox-controller.yaml
on:
push:
branches: [ main ]
paths:
- "skopeo/auto-sync-sealos-cloud-devbox-controller.yaml"
- ".github/workflows/auto-sync-sealos-cloud-devbox-controller.yaml"
schedule:
- cron: '0 16 * * *'
workflow_dispatch:

env:
USERNAME: ${{ vars.A_REGISTRY_USERNAME }}
PASSWORD: ${{ secrets.A_REGISTRY_TOKEN }}

jobs:
image-sync:
runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v2

- name: check podman
run: |
sudo podman version
- name: sync images
run: |
sudo podman run -it --rm -v ${PWD}:/workspace -w /workspace quay.io/skopeo/stable:latest \
sync --src yaml --dest docker skopeo/auto-sync-sealos-cloud-devbox-controller.yaml ${{ vars.A_REGISTRY_NAME }}/${{ vars.A_REGISTRY_REPOSITORY }} \
--dest-username $USERNAME --dest-password "$PASSWORD" \
--keep-going --retry-times 2 --all
7 changes: 7 additions & 0 deletions skopeo/auto-sync-sealos-cloud-devbox-controller.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
docker.io:
images:
labring/sealos-cloud-devbox-controller:
- latest
images-by-tag-regex:
labring/sealos-cloud-devbox-controller: ^v.*
tls-verify: false

0 comments on commit ce22d4e

Please sign in to comment.