From 31efb12762d6b4ec801bf6a59b43f0fe55fdbbd7 Mon Sep 17 00:00:00 2001 From: Cornelius Roemer Date: Sat, 24 Aug 2024 22:53:23 +0200 Subject: [PATCH] Fix upload artifact name --- .github/workflows/nodejs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index c8c87786..53a73f60 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -7,7 +7,7 @@ defaults: run: shell: bash env: - NODE_VERSION: 18.x + NODE_VERSION: 20.x jobs: build: runs-on: ${{matrix.os}} @@ -100,7 +100,7 @@ jobs: - name: Archive E2E test screenshot uses: actions/upload-artifact@v4 with: - name: e2e + name: e2e-${{ matrix.os }}-${{ strategy.job-index }} path: dist/tmp/*.png - name: Save the pr number in an artifact if: github.event_name == 'pull_request'