update:更新自动打包流程

This commit is contained in:
xiamuceer
2026-01-24 12:47:54 +08:00
parent ceb52da1ef
commit 0c3fc6c912
+2 -10
View File
@@ -2,15 +2,8 @@ name: Build and Push Multi-Arch Docker Image
on: on:
push: push:
branches:
- main
- master
tags: tags:
- 'v*' - 'v*'
pull_request:
branches:
- main
- master
workflow_dispatch: # 允许手动触发 workflow_dispatch: # 允许手动触发
env: env:
@@ -37,7 +30,6 @@ jobs:
network=host network=host
- name: Login to Docker Hub - name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
@@ -66,7 +58,7 @@ jobs:
context: . context: .
file: ./Dockerfile file: ./Dockerfile
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }} push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha cache-from: type=gha
@@ -75,7 +67,7 @@ jobs:
BUILDKIT_INLINE_CACHE=1 BUILDKIT_INLINE_CACHE=1
- name: Update Docker Hub Description - name: Update Docker Hub Description
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') if: startsWith(github.ref, 'refs/tags/v')
uses: peter-evans/dockerhub-description@v4 uses: peter-evans/dockerhub-description@v4
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}