diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1ce4d5a..2eea285 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,12 +26,6 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - - name: Login to DockerHub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Login to GHCR (GitHub Packages) uses: docker/login-action@v2 with: @@ -46,12 +40,3 @@ jobs: push: true tags: "ghcr.io/bnosac/${{ matrix.config.tag }}:latest" file: ${{ matrix.config.dockerfile }} - - - name: Build and push Dockerhub - uses: docker/build-push-action@v5 - with: - context: ${{ matrix.config.context }} - push: true - tags: "bnosac/${{ matrix.config.tag }}:latest" - file: ${{ matrix.config.dockerfile }} -