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
& fix supported branch release dispatches

[noissue]
  • Loading branch information
gerrod3 committed Mar 20, 2024
1 parent 5852d38 commit c375304
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ concurrency:
jobs:
supported-versions:
if: github.event_name == 'schedule'
runs-on: ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit c375304

Please sign in to comment.