拉取镜像推送 #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 拉取镜像推送 | |
on: | |
workflow_dispatch: | |
inputs: | |
IMAGE_NAME: | |
description: '原镜像名称:版本' | |
required: true | |
default: 'mysql/mysql-server' | |
NEW_NAME: | |
description: '同步后镜像名称:版本' | |
required: true | |
default: 'mysql-server' | |
TARGET_REGISTRY: | |
description: '仓库地址' | |
required: true | |
default: 'registry.cn-chengdu.aliyuncs.com' | |
TARGET_REPOSITORY: | |
description: '空间名称' | |
required: true | |
default: 'aopkcn' | |
ARCH: | |
description: '系统架构' | |
required: true | |
default: 'amd64' | |
type: choice | |
options: | |
- amd64 | |
- arm64 | |
- arm/v7 | |
- arm/v6 | |
- 386 | |
- s390x | |
- ppc64le | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 登录到 Docker 仓库 | |
id: login | |
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} ${{ github.event.inputs.TARGET_REGISTRY }} | |
continue-on-error: true | |
- name: 检查 Docker 登录成功 | |
if: ${{ steps.login.outcome == 'success' }} | |
run: echo "Docker 登录成功" | |
- name: 检查 Docker 登录失败 | |
if: ${{ steps.login.outcome != 'success' }} | |
run: echo "Docker 登录失败" | |
- name: 拉取、标记并推送 Docker 镜像 | |
id: pull_tag_push | |
run: | | |
docker pull --platform ${{ github.event.inputs.ARCH }} ${{ github.event.inputs.IMAGE_NAME }} | |
docker tag ${{ github.event.inputs.IMAGE_NAME }} ${{ github.event.inputs.TARGET_REGISTRY }}/${{ github.event.inputs.TARGET_REPOSITORY }}/${{ github.event.inputs.NEW_NAME }} | |
docker push ${{ github.event.inputs.TARGET_REGISTRY }}/${{ github.event.inputs.TARGET_REPOSITORY }}/${{ github.event.inputs.NEW_NAME }} | |
continue-on-error: true | |
- name: 检查镜像推送成功 | |
if: ${{ steps.pull_tag_push.outcome == 'success' }} | |
run: echo "Docker 镜像推送成功" | |
- name: 检查镜像推送失败 | |
if: ${{ steps.pull_tag_push.outcome != 'success' }} | |
run: echo "Docker 镜像推送失败" |