mirror of
https://github.com/DaoCloud/public-image-mirror.git
synced 2025-08-11 21:49:26 +08:00
Fix target sync (#393)
This commit is contained in:
9
.github/workflows/target-image-sync.yml
vendored
9
.github/workflows/target-image-sync.yml
vendored
@@ -18,8 +18,10 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Check Issue
|
- name: Check Issue
|
||||||
|
env:
|
||||||
|
MESSAGE: "${{ github.event.issue.body }}"
|
||||||
run: |
|
run: |
|
||||||
IMAGE=$(echo "${{ github.event.issue.body }}" | grep SYNC | awk '{print $2}' | head -n 1)
|
IMAGE=$(echo "${MESSAGE}" | grep SYNC | awk '{print $2}' | head -n 1)
|
||||||
if [[ -z "${IMAGE}" ]]; then
|
if [[ -z "${IMAGE}" ]]; then
|
||||||
gh issue comment ${{ github.event.issue.number }} -b "找不到镜像呢"
|
gh issue comment ${{ github.event.issue.number }} -b "找不到镜像呢"
|
||||||
gh issue edit ${{ github.event.issue.number }} --title "FAILED SYNC IMAGE"
|
gh issue edit ${{ github.event.issue.number }} --title "FAILED SYNC IMAGE"
|
||||||
@@ -57,16 +59,15 @@ jobs:
|
|||||||
PARALLET: "1"
|
PARALLET: "1"
|
||||||
http_proxy: socks5://127.0.0.1:8080
|
http_proxy: socks5://127.0.0.1:8080
|
||||||
https_proxy: socks5://127.0.0.1:8080
|
https_proxy: socks5://127.0.0.1:8080
|
||||||
|
MESSAGE: "${{ github.event.issue.body }}"
|
||||||
run: |
|
run: |
|
||||||
IMAGE=$(echo "${{ github.event.issue.body }}" | grep SYNC | awk '{print $2}' | head -n 1)
|
IMAGE=$(echo "${MESSAGE}" | grep SYNC | awk '{print $2}' | head -n 1)
|
||||||
./hack/diff-image.sh "${IMAGE}" "m.daocloud.io/${IMAGE}"
|
./hack/diff-image.sh "${IMAGE}" "m.daocloud.io/${IMAGE}"
|
||||||
if [[ $? -ne 0 ]]; then
|
if [[ $? -ne 0 ]]; then
|
||||||
gh issue comment ${{ github.event.issue.number }} -b "镜像 ${IMAGE} 同步失败"
|
gh issue comment ${{ github.event.issue.number }} -b "镜像 ${IMAGE} 同步失败"
|
||||||
gh issue edit ${{ github.event.issue.number }} --title "FAILED SYNC IMAGE ${IMAGE}"
|
gh issue edit ${{ github.event.issue.number }} --title "FAILED SYNC IMAGE ${IMAGE}"
|
||||||
gh issue close ${{ github.event.issue.number }} --reason "not planned"
|
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
IMAGE=$(echo "${{ github.event.issue.body }}" | grep SYNC | awk '{print $2}' | head -n 1)
|
|
||||||
gh issue comment ${{ github.event.issue.number }} -b "镜像 ${IMAGE} 同步完成<br>请使用 m.daocloud.io/${IMAGE} 替代源镜像"
|
gh issue comment ${{ github.event.issue.number }} -b "镜像 ${IMAGE} 同步完成<br>请使用 m.daocloud.io/${IMAGE} 替代源镜像"
|
||||||
gh issue close ${{ github.event.issue.number }} --reason "completed"
|
gh issue close ${{ github.event.issue.number }} --reason "completed"
|
||||||
fi
|
fi
|
||||||
|
Reference in New Issue
Block a user