We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5d4659 commit 3ea4254Copy full SHA for 3ea4254
.github/workflows/reuseable-builder.yml
@@ -65,7 +65,11 @@ jobs:
65
shell: bash
66
run: |
67
if [[ "${{ github.event_name }}" == "release" ]]; then
68
- BUILD_ARGS="--additional-tag ${{ inputs.version }}-${{ github.event.release.tag_name }}"
+ if [[ -n "${{ inputs.python }}" ]]; then
69
+ BUILD_ARGS="--additional-tag ${{ inputs.python }}-alpine${{ inputs.version }}-${{ github.event.release.tag_name }}"
70
+ else
71
+ BUILD_ARGS="--additional-tag ${{ inputs.version }}-${{ github.event.release.tag_name }}"
72
+ fi
73
if [[ "${{ inputs.tag_latest }}" != "${{ inputs.version }}" ]] \
74
|| [[ -n "${{ inputs.python }}" && "${{ inputs.python_latest }}" != "${{ inputs.python }}" ]];
75
then
0 commit comments