Skip to content

Commit

Permalink
Fix user/pass for quay login in publish action
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
gerrod3 committed Mar 20, 2024
1 parent 5852d38 commit 8f3f4d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/publish_images/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ runs:

- name: Quay login
env:
QUAY_BOT_PASSWORD: ${{ secrets.QUAY_BOT_PASSWORD }}
QUAY_BOT_USERNAME: ${{ secrets.QUAY_BOT_USERNAME }}
QUAY_BOT_PASSWORD: ${{ inputs.quay_bot_password }}
QUAY_BOT_USERNAME: ${{ inputs.quay_bot_username }}
run: echo "$QUAY_BOT_PASSWORD" | podman login -u "$QUAY_BOT_USERNAME" --password-stdin quay.io
shell: bash

Expand Down

0 comments on commit 8f3f4d5

Please sign in to comment.