Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Lysak committed Dec 11, 2024
1 parent 324e7ab commit a858667
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Upload stateless
uses: actions/upload-artifact@v4
with:
name: stateless-build-${{ github.run_id }}
name: stateless-build-${{ github.run_id }}-${{ matrix.shard }}
path: stateless-build.tar

build-stateful:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Upload stateful
uses: actions/upload-artifact@v4
with:
name: stateful-build-${{ github.run_id }}
name: stateful-build-${{ github.run_id }}-${{ matrix.shard }}
path: stateful-build.tar

stateless:
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
id: download
uses: actions/download-artifact@v4
with:
name: stateless-build-${{ github.run_id }}
name: stateless-build-${{ github.run_id }}-${{ matrix.shard }}

- name: Untar files
run: tar -xvf stateless-build.tar
Expand All @@ -164,7 +164,7 @@ jobs:
- uses: actions/upload-artifact@v4
if: always()
with:
name: stateless-report-${{ github.run_id }}
name: stateless-report-${{ github.run_id }}-${{ matrix.shard }}
path: playwright-report/
retention-days: 30

Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
id: download
uses: actions/download-artifact@v4
with:
name: stateful-build-${{ github.run_id }}
name: stateful-build-${{ github.run_id }}-${{ matrix.shard }}

- name: Untar files
run: tar -xvf stateful-build.tar
Expand All @@ -218,6 +218,6 @@ jobs:
- uses: actions/upload-artifact@v4
if: always()
with:
name: stateful-report-${{ github.run_id }}
name: stateful-report-${{ github.run_id }}-${{ matrix.shard }}
path: playwright-report/
retention-days: 30

0 comments on commit a858667

Please sign in to comment.