Skip to content

Commit

Permalink
Support multiple tags for jib images
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Jan 27, 2025
1 parent d10a8d2 commit 28b0f33
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion actions/java-gradle-build-jib/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,10 @@ runs:
- name: Build Docker image
run: |
VAR=$(tr ' ' ',' <<< ${{ steps.meta.outputs.tags }})
VAR="${{ steps.meta.outputs.tags }}"
echo $VAR
tags=$(echo $VAR | tr ' ' ',')
echo $tags
# ./gradlew jib \
# --info --stacktrace \
# -Djib.from.platforms=${{ inputs.platforms }} \
Expand Down

0 comments on commit 28b0f33

Please sign in to comment.