Skip to content

Commit

Permalink
Updates to the QUAY_USER & QUAY_TOKEN (#105)
Browse files Browse the repository at this point in the history
This PR updates the required variable details
QUAY_USER & QUAY_TOKEN

Signed-off-by: Krishna Harsha Voora <krvoora@redhat.com>
  • Loading branch information
krishvoor authored Sep 15, 2023
1 parent a302966 commit 1c79ea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
uses: docker/login-action@v2
with:
registry: ${{ env.CONTAINER_REGISTRY }}
username: ${{ env.CONTAINER_REGISTRY == 'quay.io' && secrets.QUAY_IO_USERNAME || github.actor }}
password: ${{ env.CONTAINER_REGISTRY == 'quay.io' && secrets.QUAY_IO_TOKEN || secrets.GITHUB_TOKEN }
username: ${{ env.CONTAINER_REGISTRY == 'quay.io' && secrets.QUAY_USER || github.actor }}
password: ${{ env.CONTAINER_REGISTRY == 'quay.io' && secrets.QUAY_TOKEN || secrets.GITHUB_TOKEN }

- name: Docker meta
id: meta
Expand Down

0 comments on commit 1c79ea3

Please sign in to comment.