From 76f65b0c655f81eeb1cf5068f5f787829ecd3b13 Mon Sep 17 00:00:00 2001 From: BRUVRY-LAGADEC Date: Tue, 26 Nov 2024 11:20:29 +0100 Subject: [PATCH] fix: :construction_worker: Github actions shared fix pipeline --- .github/workflows/component-security-scan.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/component-security-scan.yml b/.github/workflows/component-security-scan.yml index a9e7ea0..d78f1ea 100644 --- a/.github/workflows/component-security-scan.yml +++ b/.github/workflows/component-security-scan.yml @@ -27,9 +27,11 @@ jobs: # string: ${{ inputs.image-path }} - id: format name: Format proper tag + env: + IMAGE_PATH: ${{ inputs.image-path }} run: | echo "image-tag=${GITHUB_REF_NAME/\//-}" >> $GITHUB_OUTPUT - echo "image-path=${inputs.image-path@L}" >> $GITHUB_OUTPUT + echo "image-path=${IMAGE_PATH@L}" >> $GITHUB_OUTPUT - name: Build Docker image uses: docker/build-push-action@v6 if: ${{ github.event_name != 'release' }}