artifact names must be unique, otherwise only first failed logs are uploaded, other encounter 409 conflict --- .github/workflows/quic-interop-aws-lc.yml | 2 +- .github/workflows/quic-interop-libressl.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/quic-interop-aws-lc.yml b/.github/workflows/quic-interop-aws-lc.yml index 385e6efcb..0620d36fe 100644 --- a/.github/workflows/quic-interop-aws-lc.yml +++ b/.github/workflows/quic-interop-aws-lc.yml @@ -91,6 +91,6 @@ jobs: if: failure() uses: actions/upload-artifact@v4 with: - name: logs + name: logs-${{ matrix.suite.client }} path: quic-interop-runner/logs/ retention-days: 6 diff --git a/.github/workflows/quic-interop-libressl.yml b/.github/workflows/quic-interop-libressl.yml index ddef1555c..d9b18e305 100644 --- a/.github/workflows/quic-interop-libressl.yml +++ b/.github/workflows/quic-interop-libressl.yml @@ -92,6 +92,6 @@ jobs: if: failure() uses: actions/upload-artifact@v4 with: - name: logs + name: logs-${{ matrix.suite.client }} path: quic-interop-runner/logs/ retention-days: 6 -- 2.46.0