From 8f6ea9bdc5423a9113f1f6effd872b3d71cfed48 Mon Sep 17 00:00:00 2001 From: David Zane <38449481+dzane17@users.noreply.github.com> Date: Thu, 30 Jan 2025 13:26:29 -0800 Subject: [PATCH] Fix github upload artifact error (#229) Signed-off-by: David Zane --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5aa7351..5361332 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,12 +62,14 @@ jobs: with: name: logs-ubuntu path: build/testclusters/integTest-*/logs/* + overwrite: true - name: Upload Artifacts uses: actions/upload-artifact@v4 with: name: query-insights-plugin-${{ matrix.os }} path: query-insights-artifacts + overwrite: true build-windows-macos: env: @@ -120,6 +122,7 @@ jobs: with: name: logs-mac path: build/testclusters/integTest-*/logs/* + overwrite: true - name: Upload failed logs uses: actions/upload-artifact@v4 @@ -127,9 +130,11 @@ jobs: with: name: logs-windows path: build\testclusters\integTest-*\logs\* + overwrite: true - name: Upload Artifacts uses: actions/upload-artifact@v4 with: name: query-insights-plugin-${{ matrix.os }} path: query-insights-artifacts + overwrite: true