diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 6e55a30..f064b77 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -25,8 +25,8 @@ jobs: - name: Login to DockerHub uses: docker/login-action@v1 with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} + username: ${{ secrets.RELEASE_DOCKERHUB_ACCOUNT }} + password: ${{ secrets.RELEASE_DOCKERHUB_TOKEN }} - name: Build and push id: docker_build uses: docker/build-push-action@v2 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1997da2..425efc6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,8 +22,8 @@ jobs: - name: Login to DockerHub uses: docker/login-action@v1 with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} + username: ${{ secrets.RELEASE_DOCKERHUB_ACCOUNT }} + password: ${{ secrets.RELEASE_DOCKERHUB_TOKEN }} - name: Build and push id: docker_build uses: docker/build-push-action@v2