From 7757db8a26989cf5337de5bbe54fc43348b124cf Mon Sep 17 00:00:00 2001 From: Pil0tXia <41445332+Pil0tXia@users.noreply.github.com> Date: Thu, 31 Aug 2023 16:55:46 +0800 Subject: [PATCH] [ISSUE #6] Fix DockerHub PASSWORD obtaining (#7) * feat: add docker build manual and fix dockerhub push * Use DOCKERHUB_TOKEN instead of DOCKERHUB_PASSWORD Fixes #6 --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5e748a60..be2c833e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -32,7 +32,7 @@ jobs: uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_PASSWORD }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v4 with: