Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/shared-build-and-publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@ jobs:
- name: Login to ACR via OIDC
run: az acr login --name ${{ inputs.acr_name }}

- name: Checkout
# Checkout is needed when context is local "."
# Otherwise the repository code will not be fetched for the build
if: ${{ inputs.context == '.' }}
uses: actions/checkout@v5

- name: Download artifacts
if: ${{ inputs.artifact-id }}
uses: actions/download-artifact@v5
Expand Down