ci: 启用Docker镜像构建和推送步骤
Some checks failed
Release Windows Build / release (push) Has been cancelled
Release Linux Build / release (push) Has been cancelled
Release MacOS Build / release (push) Has been cancelled
Build Docker Image / Build Docker Image (push) Has been cancelled

取消注释Docker构建和推送配置,恢复多平台镜像构建功能,
支持linux/amd64和linux/arm64架构的镜像推送
This commit is contained in:
2025-08-10 13:36:28 +08:00
parent 299b93321b
commit 351283de87

View File

@@ -45,14 +45,14 @@ jobs:
type=raw,value=beta,enable=${{ endsWith(github.ref, '-beta') }}
type=raw,value=latest,enable=${{ !contains(github.ref, '-') }}
# - name: Build and push Docker image
# id: build
# uses: docker/build-push-action@v5
# with:
# context: .
# platforms: linux/amd64,linux/arm64
# push: true
# tags: ${{ steps.meta.outputs.tags }}
# labels: ${{ steps.meta.outputs.labels }}
# build-args: |
# VERSION=${{ github.ref_name }}
- name: Build and push Docker image
id: build
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
VERSION=${{ github.ref_name }}