From c37530407c9fb5e2b6b4fed7ce4d583204245cb6 Mon Sep 17 00:00:00 2001 From: Gerrod Ubben Date: Tue, 19 Mar 2024 22:11:08 -0400 Subject: [PATCH] Fix user/pass for quay login in publish action & fix supported branch release dispatches [noissue] --- .github/actions/publish_images/action.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/publish_images/action.yml b/.github/actions/publish_images/action.yml index ace9c844..9cd9fd00 100644 --- a/.github/actions/publish_images/action.yml +++ b/.github/actions/publish_images/action.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1c1b4850..b7c584e3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: