Skip to content

Commit

Permalink
Fix github upload artifact error (#229)
Browse files Browse the repository at this point in the history
Signed-off-by: David Zane <[email protected]>
  • Loading branch information
dzane17 authored Jan 30, 2025
1 parent e7289fb commit 8f6ea9b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -120,16 +122,19 @@ jobs:
with:
name: logs-mac
path: build/testclusters/integTest-*/logs/*
overwrite: true

- name: Upload failed logs
uses: actions/upload-artifact@v4
if: ${{ failure() && matrix.os == 'windows-latest' }}
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

0 comments on commit 8f6ea9b

Please sign in to comment.