From e1eeb8d75d01c17b7a4ed33ee5fa0db8fa338ed1 Mon Sep 17 00:00:00 2001 From: Collin Duncan <3679940+cgduncan7@users.noreply.github.com> Date: Fri, 26 May 2023 16:44:33 -0500 Subject: [PATCH] Fixing username and password for GHCR --- .github/workflows/main.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f1427a9..2c7acff 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,8 +7,6 @@ jobs: build-image: runs-on: ubuntu-latest env: - GHCR_USERNAME: ${{ secrets.GHCR_USERNAME }} - GHCR_PASSWORD: ${{ secrets.GHCR_PASSWORD }} GHCR_IMAGE: ghcr.io/cgduncan7/autobaan steps: - name: Set up Docker Buildx @@ -17,8 +15,8 @@ jobs: uses: docker/login-action@v2 with: registry: ghcr.io - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} + username: ${{ secrets.GHCR_USERNAME }} + password: ${{ secrets.GHCR_PASSWORD }} - name: Build docker image uses: docker/build-push-action@v4 with: