Merge pull request 'fix: always compute repo name [skip-ci] [release-patch]' (#24) from dev into main

Reviewed-on: #24
This commit was merged in pull request #24.
This commit is contained in:
2025-11-19 19:11:34 +00:00

View File

@@ -104,7 +104,7 @@ jobs:
echo "tag=$prev" >> "$GITHUB_OUTPUT"
- name: Compute lowercased image repo
if: ${{ github.event.inputs.docker_release == 'true' }}
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.docker_release == 'true' || github.event_name == 'pull_request' }}
run: |
echo "IMAGE_REPO=${{ secrets.REGISTRY }}/$(echo '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV