diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3f859c6..34dc606 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -151,30 +151,30 @@ jobs: key: ${{ runner.os }}-buildx-${{ github.sha }} restore-keys: | ${{ runner.os }}-buildx- - - - name: Login to DockerHub - if: github.event_name != 'pull_request' - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_PASSWORD }} - - - name: Login to GHCR.io - if: github.event_name != 'pull_request' - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.GH_PAT }} - - - name: Build and push - uses: docker/build-push-action@v2 - with: - pull: true - context: . - platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6 - push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.docker_meta.outputs.tags }} - labels: ${{ steps.docker_meta.outputs.labels }} - cache-from: type=local,src=/tmp/buildx-cache - cache-to: type=local,dest=/tmp/buildx-cache + # + # - name: Login to DockerHub + # if: github.event_name != 'pull_request' + # uses: docker/login-action@v1 + # with: + # username: ${{ secrets.DOCKERHUB_USERNAME }} + # password: ${{ secrets.DOCKERHUB_PASSWORD }} + # + # - name: Login to GHCR.io + # if: github.event_name != 'pull_request' + # uses: docker/login-action@v1 + # with: + # registry: ghcr.io + # username: ${{ github.repository_owner }} + # password: ${{ secrets.GH_PAT }} + # + # - name: Build and push + # uses: docker/build-push-action@v2 + # with: + # pull: true + # context: . + # platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6 + # push: ${{ github.event_name != 'pull_request' }} + # tags: ${{ steps.docker_meta.outputs.tags }} + # labels: ${{ steps.docker_meta.outputs.labels }} + # cache-from: type=local,src=/tmp/buildx-cache + # cache-to: type=local,dest=/tmp/buildx-cache