Skip to content

feat: remove cache from #221

feat: remove cache from

feat: remove cache from #221

name: Build and Publish Docker Images Demo
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
service:
- { name: "ocap-api", context: ".deploy/api", image_name: "ocap-api-demo" }
- { name: "ocap-webapp", context: ".deploy/webapp", image_name: "ocap-webapp-demo" }
steps:
- uses: actions/checkout@v4
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# - name: Login to GitHub Container Registry
# uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{ github.repository_owner }}
# password: ${{ secrets.GITHUB_TOKEN }}
- uses: aliyun/acr-login@v1
with:
login-server: https://registry.cn-hangzhou.aliyuncs.com
username: "${{ secrets.ACR_USERNAME }}"
password: "${{ secrets.ACR_PASSWORD }}"
- 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: ${{ matrix.service.context }}/Dockerfile
push: true
tags: |
metadc/${{ matrix.service.image_name }}:latest
registry.cn-hangzhou.aliyuncs.com/metad/${{ matrix.service.image_name }}:latest
- name: Docker images list
run: |
sudo docker image list