Skip to content

Commit 005ec97

Browse files
committed
Fix CI build step process outputing wrong taco name
1 parent d301e37 commit 005ec97

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/tests_and_release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ jobs:
5151
python -m connector_packager.package $GITHUB_WORKSPACE/cratedb-tableau-connector/cratedb_jdbc
5252
TACO_FILE_PATH=$(find "$(pwd)/packaged-connector" -name "*.taco" | head -n 1)
5353
54+
NEW_TACO_FILE_PATH=$(echo "$TACO_FILE_PATH" | sed 's/postgres/cratedb/')
55+
mv "$TACO_FILE_PATH" "$NEW_TACO_FILE_PATH"
56+
TACO_FILE_PATH=$NEW_TACO_FILE_PATH
57+
5458
echo Workflow: Taco file is in: $TACO_FILE_PATH
5559
5660
if [[ "$TACO_FILE_PATH" != *"cratedb_jdbc"* ]]; then

0 commit comments

Comments
 (0)