From 8c83f30078f616c7cc3d360919727ddc4c45c55e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20M=C3=BChleisen?= Date: Thu, 2 May 2024 09:36:57 +0200 Subject: [PATCH] path finagling --- .github/workflows/ODBC.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ODBC.yml b/.github/workflows/ODBC.yml index 44be61ab..2e5304b9 100644 --- a/.github/workflows/ODBC.yml +++ b/.github/workflows/ODBC.yml @@ -128,9 +128,7 @@ jobs: - name: ODBC Tests if: ${{ inputs.skip_tests != 'true' }} shell: bash - run: | - ls -R build/release - ./build/release/test/test_odbc + run: ./build/release/bin/Release/test_odbc.exe - name: Deploy shell: bash @@ -138,7 +136,7 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.S3_DUCKDB_STAGING_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_DUCKDB_STAGING_KEY }} run: | - zip -j duckdb_odbc-windows-amd64.zip bin/Release/* + zip -j duckdb_odbc-windows-amd64.zip /build/release/bin/Release/duckdb_odbc.dll ./scripts/upload-assets-to-staging.sh github_release duckdb_odbc-windows-amd64.zip - uses: actions/upload-artifact@v3