Skip to content

Commit

Permalink
Update arm64.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gaohongf authored Sep 27, 2024
1 parent 198a7a8 commit e379063
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ on:
aliyun_docker_registry_url:
description: '阿里云镜像仓库地址'
required: true
aliyun_docker_registry:
description: '阿里云镜像仓库'
required: true
docker_images:
description: '请填写docker镜像名称 多个用英文逗号分开'
required: true
Expand All @@ -35,6 +32,6 @@ jobs:
IFS=',' read -r -a image_array <<< "$images"
for image in "${image_array[@]}"; do
docker pull "${image}"
docker tag "${image}" "${{ github.event.inputs.aliyun_docker_registry_url }}/${{ github.event.inputs.aliyun_docker_registry }}/${image}"
docker push "${{ github.event.inputs.aliyun_docker_registry_url }}/${{ github.event.inputs.aliyun_docker_registry }}/${image}"
docker tag "${image}" "${{ github.event.inputs.aliyun_docker_registry_url }}/${image}"
docker push "${{ github.event.inputs.aliyun_docker_registry_url }}/${image}"
done

0 comments on commit e379063

Please sign in to comment.