diff --git a/.github/workflows/publish-docker-image.yaml b/.github/workflows/publish-docker-image.yaml index cddad07..1aa68a0 100644 --- a/.github/workflows/publish-docker-image.yaml +++ b/.github/workflows/publish-docker-image.yaml @@ -10,16 +10,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Set up Docker Buildx - - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v3 - name: Login to Docker Hub - - uses: docker/login-action@v3 - - with: + uses: docker/login-action@v3 + with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push - - uses: docker/build-push-action@v6 - - with: + uses: docker/build-push-action@v6 + with: push: true - tags: wshaddix/http-nats-proxy:${{github.ref_name}} \ No newline at end of file + tags: wshaddix/http-nats-proxy:${{ github.ref_name }} \ No newline at end of file