fix build workflows (#354)

this PR fixes the build workflows, so the QUAY_ORG environment variable
is populated even when run by a PR from a fork
This commit is contained in:
Maximilian Dorninger
2026-01-05 11:18:51 +01:00
committed by GitHub
parent 87f10e2508
commit 3cd750b882
2 changed files with 3 additions and 3 deletions

View File

@@ -75,7 +75,7 @@ jobs:
contents: read
packages: write
env:
QUAY_ORG: ${{ secrets.QUAY_ORG }}
QUAY_ORG: ${{ secrets.QUAY_ORG || github.repository_owner }}
steps:
- name: Checkout repository
uses: actions/checkout@v4

View File

@@ -40,7 +40,7 @@ jobs:
contents: read
packages: write
env:
QUAY_ORG: ${{ secrets.QUAY_ORG }}
QUAY_ORG: ${{ secrets.QUAY_ORG || github.repository_owner }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
@@ -125,7 +125,7 @@ jobs:
contents: read
packages: write
env:
QUAY_ORG: ${{ secrets.QUAY_ORG }}
QUAY_ORG: ${{ secrets.QUAY_ORG || github.repository_owner }}
steps:
- name: Checkout repository
uses: actions/checkout@v4