From 65366826c0999e98fcbf94a3022ff65370588e58 Mon Sep 17 00:00:00 2001 From: Mo Kweon Date: Mon, 27 Sep 2021 23:04:25 -0700 Subject: [PATCH] fix: backend build using github token it seems the default token is no longer valid for building a docker image...? --- .github/workflows/backend-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backend-build.yaml b/.github/workflows/backend-build.yaml index 5cf64491..aca42278 100644 --- a/.github/workflows/backend-build.yaml +++ b/.github/workflows/backend-build.yaml @@ -79,7 +79,7 @@ jobs: with: registry: ghcr.io username: ${{ github.repository_owner }} - password: ${{ secrets.GITHUB_TOKEN }} + password: ${{ secrets.GHCR_IO_TOKEN }} - name: Build and push uses: docker/build-push-action@v2