fix: docker tag image #218
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: Build and Publish Docker Images Demo | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
ocap-api: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
context: . | |
file: ./.deploy/api/Dockerfile | |
push: true | |
tags: | | |
metadc/ocap-api-demo:latest | |
cache-from: type=registry,ref=metadc/ocap-api-demo:latest | |
cache-to: type=inline | |
- name: Docker images list | |
run: | | |
sudo docker image list | |
- name: Login to GitHub Container Registry | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push to Github Registry | |
run: | | |
docker tag metadc/ocap-api-demo:latest ghcr.io/meta-d/ocap-api-demo:latest | |
docker push ghcr.io/meta-d/ocap-api-demo:latest | |
docker tag ghcr.io/meta-d/ocap-api-demo:latest ghcr.io/meta-d/ocap-api-demo:$GITHUB_REF_NAME | |
docker push ghcr.io/meta-d/ocap-api-demo:$GITHUB_REF_NAME | |
- uses: aliyun/acr-login@v1 | |
with: | |
login-server: https://registry.cn-hangzhou.aliyuncs.com | |
username: "${{ secrets.ACR_USERNAME }}" | |
password: "${{ secrets.ACR_PASSWORD }}" | |
- name: Push to Aliyun Registry | |
run: | | |
docker tag metadc/ocap-api-demo:latest registry.cn-hangzhou.aliyuncs.com/metad/ocap-api-demo:latest | |
docker push registry.cn-hangzhou.aliyuncs.com/metad/ocap-api-demo:latest | |
docker tag registry.cn-hangzhou.aliyuncs.com/metad/ocap-api-demo:latest registry.cn-hangzhou.aliyuncs.com/metad/ocap-api-demo:$GITHUB_REF_NAME | |
docker push registry.cn-hangzhou.aliyuncs.com/metad/ocap-api-demo:latest |