diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 5cbd33fac..503455121 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -66,6 +66,11 @@ jobs: with: path: dist/linux key: linux-${{ env.sha_short }}-canary + - name: Login to docker.io registry + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to ghcr.io registry uses: docker/login-action@v2 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ddac11f54..053e7716b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,6 +68,11 @@ jobs: with: path: dist/linux key: linux-${{ env.sha_short }} + - name: Login to docker.io registry + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to ghcr.io registry uses: docker/login-action@v2 with: