Skip to content

Commit 05d4a79

Browse files
committed
fix overwriting files in packages
1 parent 4b21a39 commit 05d4a79

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build_and_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
uses: actions/upload-artifact@v6
163163
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && startsWith(github.ref, 'refs/heads/v')
164164
with:
165-
name: packages
165+
name: packages-linux
166166
overwrite: true
167167
path: |
168168
${{github.workspace}}/build/Crow-*
@@ -173,7 +173,7 @@ jobs:
173173
uses: actions/upload-artifact@v6
174174
if: matrix.os == 'macos-latest' && matrix.compiler == 'clang' && matrix.cxx_stdlib == 'libstdc++' && startsWith(github.ref, 'refs/heads/v')
175175
with:
176-
name: packages
176+
name: packages-macos
177177
overwrite: true
178178
path: |
179179
${{github.workspace}}/build/Crow-*
@@ -183,7 +183,7 @@ jobs:
183183
uses: actions/upload-artifact@v6
184184
if: matrix.os == 'windows-latest' && matrix.compiler == 'msvc' && matrix.cxx_stdlib == 'msvc' && startsWith(github.ref, 'refs/heads/v')
185185
with:
186-
name: packages
186+
name: packages-windows
187187
overwrite: true
188188
path: |
189189
${{github.workspace}}/build/Crow-*

0 commit comments

Comments
 (0)