Skip to content

Commit

Permalink
Replace forward slashes in database names.
Browse files Browse the repository at this point in the history
  • Loading branch information
CaMer0n committed Nov 27, 2024
1 parent db6472c commit 422a80e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ jobs:
id: set_artifact_name
run: |
TIMESTAMP=$(date +%Y%m%d%H%M%S)
INTERPRETER_IMAGE=$(echo "${{ matrix.interpreter.image }}" | sed 's/:/_/g')
DB_IMAGE=$(echo "${{ matrix.db.image }}" | sed 's/:/_/g')
INTERPRETER_IMAGE=$(echo "${{ matrix.interpreter.image }}" | sed 's/[:/]/_/g')
DB_IMAGE=$(echo "${{ matrix.db.image }}" | sed 's/[:/]/_/g')
ARTIFACT_NAME="tests_output_${{ github.run_id }}_${INTERPRETER_IMAGE}_${DB_IMAGE}_${TIMESTAMP}"
echo "ARTIFACT_NAME=${ARTIFACT_NAME}" >> $GITHUB_ENV
Expand Down

0 comments on commit 422a80e

Please sign in to comment.