diff options
| -rw-r--r-- | .github/workflows/release.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b1929df..f4f907b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -42,6 +42,8 @@ jobs: - name: Setup Docker Buildx uses: docker/setup-buildx-action@v1 + with: + buildkitd-flags: "--debug" - name: Login to DockerHub if: ${{ startsWith(github.ref, 'refs/tags/') }} @@ -58,8 +60,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build + - name: Build if: ${{ startsWith(github.ref, 'refs/tags/') }} uses: docker/build-push-action@v2 with: @@ -67,5 +68,4 @@ jobs: push: ${{ github.event_name != 'pull_request' }} file: ./cmd/seaweedfs-csi-driver/Dockerfile platforms: linux/amd64, linux/arm, linux/arm64, linux/386 - tags: ${{ steps.docker_meta.outputs.tags }} labels: ${{ steps.docker_meta.outputs.labels }} |
