Skip to content

Commit 4881765

Browse files
Fix github upload artifact error (#229) (#231)
(cherry picked from commit 8f6ea9b) Signed-off-by: David Zane <davizane@amazon.com> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 481180e commit 4881765

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

+5
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,14 @@ jobs:
6464
with:
6565
name: logs-ubuntu
6666
path: build/testclusters/integTest-*/logs/*
67+
overwrite: true
6768

6869
- name: Upload Artifacts
6970
uses: actions/upload-artifact@v4
7071
with:
7172
name: query-insights-plugin-${{ matrix.os }}
7273
path: query-insights-artifacts
74+
overwrite: true
7375

7476
build-windows-macos:
7577
env:
@@ -122,16 +124,19 @@ jobs:
122124
with:
123125
name: logs-mac
124126
path: build/testclusters/integTest-*/logs/*
127+
overwrite: true
125128

126129
- name: Upload failed logs
127130
uses: actions/upload-artifact@v4
128131
if: ${{ failure() && matrix.os == 'windows-latest' }}
129132
with:
130133
name: logs-windows
131134
path: build\testclusters\integTest-*\logs\*
135+
overwrite: true
132136

133137
- name: Upload Artifacts
134138
uses: actions/upload-artifact@v4
135139
with:
136140
name: query-insights-plugin-${{ matrix.os }}
137141
path: query-insights-artifacts
142+
overwrite: true

0 commit comments

Comments
 (0)