Skip to content

Commit

Permalink
Update docker-sync.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
yaming116 authored Jun 11, 2024
1 parent 22303e3 commit 9d9b688
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/docker-sync.yaml
Original file line number Diff line number Diff line change
@@ -1 +1,46 @@
name: Docker

on:
push:
branches: [ main ]
# pull_request:
# branches: [ main ]

env:
REGISTRY: registry.cn-hangzhou.aliyuncs.com
ALIYUN_REGISTRY_USER: "${{ secrets.ALIYUN_REGISTRY_USER }}"
ALIYUN_REGISTRY_PASSWORD: "${{ secrets.ALIYUN_REGISTRY_PASSWORD }}"
MM_NOTIFY_URL: "${{ secrets.MM_NOTIFY_URL }}"


jobs:
build:
name: sync
runs-on: ubuntu-latest
steps:
- name: 'Set up skopeo'
uses: warjiang/setup-skopeo@latest
with:
version: latest

- name: 'Sync images'
run: |
data=`cat trigger.txt`
src=$(echo $data | awk '{print $1}')
dist=$(echo $data | awk '{print $2}')
skopeo --version
skopeo copy --dest-creds \
${{ secrets.ALIYUN_REGISTRY_USER }}:${{ secrets.ALIYUN_REGISTRY_PASSWORD }} \
docker://${src} \
docker://${dist}
if [ $MM_NOTIFY_URL ];then
curl -H 'Content-Type: application/json' \
-d "{\"msgtype\": \"text\",\"text\": {\"content\":\"同步成功 $data \"}}" \
$MM_NOTIFY_URL
else
echo 'MM_NOTIFY_URL not set'
fi

0 comments on commit 9d9b688

Please sign in to comment.