From 4c357c8f769e027016e18824ff7c51ea50e52311 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Mon, 23 Oct 2023 12:53:10 +0700 Subject: [PATCH] ci: create separate artifact archives per workflow run (#4121) --- .github/workflows/integration.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index c661e09cc..ba94f673e 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -56,7 +56,8 @@ jobs: go run github.com/onsi/ginkgo/v2/ginkgo -r -v -randomize-all -randomize-suites -trace integrationtests/self -- ${{ env.QLOGFLAG }} - name: save qlogs if: ${{ always() && env.DEBUG == 'true' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: - name: qlogs + name: qlogs-${{ matrix.os }}-go${{ matrix.go }} path: integrationtests/self/*.qlog + retention-days: 7