Merge pull request #948 from fudiwei/dev #18
Workflow file for this run
This file contains hidden or 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: Docker Image CI (preview versions) | |
on: | |
push: | |
tags: | |
- "v[0-9]*-alpha*" | |
- "v[0-9]*-beta*" | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: "Tag version to be used for Docker image" | |
required: true | |
default: "next" | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
certimate/certimate | |
registry.cn-shanghai.aliyuncs.com/certimate/certimate | |
tags: | | |
type=ref,event=tag,pattern={{version}} | |
flavor: | | |
latest=false | |
- name: Log in to DOCKERHUB | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Log in to ALIYUNCS | |
uses: docker/login-action@v3 | |
with: | |
registry: registry.cn-shanghai.aliyuncs.com | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Inject tag version of UI | |
run: | | |
echo "VITE_APP_VERSION=${GITHUB_REF#refs/tags/}" > ./ui/.env | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ./Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} |