From e0c216361e8d463e144bcd74ee680224ae99ce90 Mon Sep 17 00:00:00 2001 From: kubectl Date: Thu, 20 Jun 2024 21:39:06 +0200 Subject: [PATCH] fix: idk proper ident or sth? --- .../action.yaml | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/actions/java-gradle-build-push-jib-multi-plaftorm/action.yaml b/actions/java-gradle-build-push-jib-multi-plaftorm/action.yaml index 2533c2b48..cb777d97e 100644 --- a/actions/java-gradle-build-push-jib-multi-plaftorm/action.yaml +++ b/actions/java-gradle-build-push-jib-multi-plaftorm/action.yaml @@ -72,19 +72,19 @@ runs: gradle-cache: ${{ inputs.gradle-cache }} gradle-cache-read-only: ${{ inputs.gradle-cache-read-only }} - - name: Process inputs - id: process-inputs - run: | - # Extract the image name from the full image name - echo "IMAGE_NAME=$(echo "${{ inputs.full-image-name }}" | cut -d ':' -f 1)" >> "$GITHUB_OUTPUT" - IFS=',' read -r -a tags <<< ${{ inputs.additional-tags }} - echo "IMAGE_TAGS<> "$GITHUB_OUTPUT" - for element in "${tags[@]}" - do - echo "type=raw,$element" >> $GITHUB_OUTPUT - done - echo "EOF" >> "$GITHUB_OUTPUT" - shell: bash + - name: Process inputs + id: process-inputs + run: | + # Extract the image name from the full image name + echo "IMAGE_NAME=$(echo "${{ inputs.full-image-name }}" | cut -d ':' -f 1)" >> "$GITHUB_OUTPUT" + IFS=',' read -r -a tags <<< "${{ inputs.additional-tags }}" + echo "IMAGE_TAGS<> "$GITHUB_OUTPUT" + for element in "${tags[@]}" + do + echo "type=raw,$element" >> $GITHUB_OUTPUT + done + echo "EOF" >> "$GITHUB_OUTPUT" + shell: bash - name: Docker metadata id: meta