fix: 移除 timeout 限制,添加上傳完成訊息

This commit is contained in:
Your Name 2026-01-25 19:34:56 +08:00
parent 6e36d35de8
commit e69b2c5225

View file

@ -23,7 +23,6 @@ jobs:
# ============================================================================== # ==============================================================================
build-amd64: build-amd64:
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
timeout-minutes: 120
permissions: permissions:
contents: read contents: read
packages: write packages: write
@ -117,28 +116,36 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push AMD64 image - name: "🐳 Build and push AMD64 image"
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
timeout-minutes: 90
with: with:
context: . context: .
file: Dockerfile file: Dockerfile
push: true push: true
tags: ${{ env.DOCKER_IMAGE }}:${{ steps.tag.outputs.version }}-amd64 tags: ${{ env.DOCKER_IMAGE }}:${{ steps.tag.outputs.version }}-amd64
platforms: linux/amd64 platforms: linux/amd64
# 只使用 cache-from不使用 cache-to避免額外上傳時間
cache-from: type=registry,ref=${{ env.DOCKER_IMAGE }}:buildcache-amd64 cache-from: type=registry,ref=${{ env.DOCKER_IMAGE }}:buildcache-amd64
cache-to: type=registry,ref=${{ env.DOCKER_IMAGE }}:buildcache-amd64,mode=max,compression=zstd
provenance: false provenance: false
sbom: false sbom: false
build-args: | build-args: |
BUILDKIT_INLINE_CACHE=1 BUILDKIT_INLINE_CACHE=1
- name: "✅ AMD64 Image 構建完成"
run: |
echo "========================================"
echo "🚀 AMD64 Image 已成功推送到 Docker Hub"
echo "========================================"
echo "Image: ${{ env.DOCKER_IMAGE }}:${{ steps.tag.outputs.version }}-amd64"
echo "Platform: linux/amd64"
echo "Time: $(date)"
echo "========================================"
# ============================================================================== # ==============================================================================
# 🐳 Build ARM64 Image分開構建解決空間不足問題 # 🐳 Build ARM64 Image分開構建解決空間不足問題
# ============================================================================== # ==============================================================================
build-arm64: build-arm64:
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
timeout-minutes: 180
permissions: permissions:
contents: read contents: read
packages: write packages: write
@ -235,22 +242,31 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push ARM64 image - name: "🐳 Build and push ARM64 image"
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
timeout-minutes: 150
with: with:
context: . context: .
file: Dockerfile file: Dockerfile
push: true push: true
tags: ${{ env.DOCKER_IMAGE }}:${{ steps.tag.outputs.version }}-arm64 tags: ${{ env.DOCKER_IMAGE }}:${{ steps.tag.outputs.version }}-arm64
platforms: linux/arm64 platforms: linux/arm64
# 只使用 cache-from不使用 cache-to避免額外上傳時間
cache-from: type=registry,ref=${{ env.DOCKER_IMAGE }}:buildcache-arm64 cache-from: type=registry,ref=${{ env.DOCKER_IMAGE }}:buildcache-arm64
cache-to: type=registry,ref=${{ env.DOCKER_IMAGE }}:buildcache-arm64,mode=max,compression=zstd
provenance: false provenance: false
sbom: false sbom: false
build-args: | build-args: |
BUILDKIT_INLINE_CACHE=1 BUILDKIT_INLINE_CACHE=1
- name: "✅ ARM64 Image 構建完成"
run: |
echo "========================================"
echo "🚀 ARM64 Image 已成功推送到 Docker Hub"
echo "========================================"
echo "Image: ${{ env.DOCKER_IMAGE }}:${{ steps.tag.outputs.version }}-arm64"
echo "Platform: linux/arm64"
echo "Time: $(date)"
echo "========================================"
# ============================================================================== # ==============================================================================
# 🐳 Create Multi-Arch Manifest合併兩個架構 # 🐳 Create Multi-Arch Manifest合併兩個架構
# ============================================================================== # ==============================================================================