Skip to content

Commit e76d806

Browse files
committed
name
1 parent 4682bf0 commit e76d806

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/code_quality.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ jobs:
6969

7070
- name: Sanitize Dockerfile name
7171
id: sanitize_name
72-
run: echo "safe_name=${{ matrix.dockerfile//\//_ }}" >> $GITHUB_OUTPUT
72+
run: |
73+
IMAGE_NAME="$(basename '${{ matrix.dockerfile }}' | tr -d '.Dockerfile'):${{github.sha}}"
74+
echo "safe_name=$IMAGE_NAME" >> $GITHUB_OUTPUT
7375
7476
- name: Run Hadolint
7577
uses: hadolint/[email protected]

.github/workflows/vulnerability.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
working-directory: ${{ steps.dockerfile-info.outputs.dirname }}
8686
# yamllint disable rule:line-length
8787
run: |
88-
IMAGE_NAME="local/$(echo '${{ matrix.dockerfile }}' | tr '/' '_'):${{ github.sha }}"
88+
IMAGE_NAME="$(basename '${{ matrix.dockerfile }}' | tr -d '.Dockerfile'):${{github.sha}}"
8989
docker build -t $IMAGE_NAME -f ${{ matrix.dockerfile }} .
9090
echo "IMAGE_NAME=$IMAGE_NAME" >> $GITHUB_ENV
9191
# yamllint enable rule:line-length

0 commit comments

Comments
 (0)