name: Build and Push Multi-Arch Docker Image on: push: tags: - 'v*' workflow_dispatch: # 允许手动触发 env: DOCKER_IMAGE: mumujie/mumuainovel FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true jobs: build-and-push: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v6 - name: Set up QEMU uses: docker/setup-qemu-action@v4 with: platforms: linux/amd64,linux/arm64 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 with: driver-opts: | image=moby/buildkit:master network=host - name: Login to Docker Hub uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Extract metadata (tags, labels) id: meta uses: docker/metadata-action@v6 with: images: ${{ env.DOCKER_IMAGE }} tags: | # 对于main/master分支,打latest标签 type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' }} # 对于tag,使用版本号 type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}} # 使用分支名 type=ref,event=branch # 使用commit SHA type=sha,prefix=sha- - name: Build and push Docker image uses: docker/build-push-action@v7 with: context: . file: ./Dockerfile platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max build-args: | BUILDKIT_INLINE_CACHE=1 - name: Update Docker Hub Description if: startsWith(github.ref, 'refs/tags/v') uses: peter-evans/dockerhub-description@v5 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} repository: ${{ env.DOCKER_IMAGE }} readme-filepath: ./README.md continue-on-error: true