We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d79179f commit 5a6a7e5Copy full SHA for 5a6a7e5
1 file changed
.github/workflows/docker-publish.yml
@@ -65,7 +65,7 @@ jobs:
65
with:
66
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
67
tags: |
68
- ${{ github.event_name == 'pull_request' && 'pr-${{ github.event.pull_request.number }}' || steps.meta.outputs.tags }}
+ ${{ github.event_name == 'pull_request' ? 'pr-' + github.event.pull_request.number : steps.meta.outputs.tags }}
69
70
# Build and push Docker image with Buildx
71
# https://github.com/docker/build-push-action
0 commit comments