name: Docker Build and Publish on: push: branches: [ "main" ] workflow_dispatch: # 允许手动触发 env: IMAGE_NAME: ${{ secrets.DOCKERHUB_USERNAME }}/deep-research-web jobs: build: strategy: matrix: include: - platform: linux/amd64 runner: ubuntu-latest - platform: linux/arm64 runner: ubuntu-24.04-arm runs-on: ${{ matrix.runner }} permissions: contents: read packages: write steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 with: platforms: ${{ matrix.platform }} - name: Log in to Docker Hub uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Extract metadata (tags, labels) for Docker id: meta uses: docker/metadata-action@v5 with: images: ${{ env.IMAGE_NAME }} tags: | type=raw,value=latest,enable={{is_default_branch}} type=sha,prefix={{branch}}- type=ref,event=branch type=ref,event=tag - name: Build and push Docker image uses: docker/build-push-action@v5 with: context: . push: true platforms: ${{ matrix.platform }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} cache-from: | type=gha,scope=${{ matrix.platform }} cache-to: | type=gha,mode=max,scope=${{ matrix.platform }} target: runner # 只构建到最终阶段