Skip to content

Commit 01ae058

Browse files
committed
Avoid publishing artifacts with conflicting names
.. as documented in actions/upload-artifact#480. (cherry picked from commit 26f16a7)
1 parent c4edaf3 commit 01ae058

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build_and_test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,10 +240,12 @@ jobs:
240240
check-arbitrary-configs parallel=4 CONFIGS=$TESTS
241241
- uses: "./.github/actions/save_logs_and_results"
242242
if: always()
243+
with:
244+
folder: ${{ env.PG_MAJOR }}_arbitrary_configs_${{ matrix.parallel }}
243245
- uses: "./.github/actions/upload_coverage"
244246
if: always()
245247
with:
246-
flags: ${{ env.pg_major }}_upgrade
248+
flags: ${{ env.PG_MAJOR }}_arbitrary_configs_${{ matrix.parallel }}
247249
codecov_token: ${{ secrets.CODECOV_TOKEN }}
248250
test-pg-upgrade:
249251
name: PG${{ matrix.old_pg_major }}-PG${{ matrix.new_pg_major }} - check-pg-upgrade
@@ -293,6 +295,8 @@ jobs:
293295
if: failure()
294296
- uses: "./.github/actions/save_logs_and_results"
295297
if: always()
298+
with:
299+
folder: ${{ env.old_pg_major }}_${{ env.new_pg_major }}_upgrade
296300
- uses: "./.github/actions/upload_coverage"
297301
if: always()
298302
with:
@@ -338,10 +342,12 @@ jobs:
338342
done;
339343
- uses: "./.github/actions/save_logs_and_results"
340344
if: always()
345+
with:
346+
folder: ${{ env.PG_MAJOR }}_citus_upgrade
341347
- uses: "./.github/actions/upload_coverage"
342348
if: always()
343349
with:
344-
flags: ${{ env.pg_major }}_upgrade
350+
flags: ${{ env.PG_MAJOR }}_citus_upgrade
345351
codecov_token: ${{ secrets.CODECOV_TOKEN }}
346352
ch_benchmark:
347353
name: CH Benchmark

0 commit comments

Comments
 (0)