We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3d1071 commit 0cf43b6Copy full SHA for 0cf43b6
.github/actions/run-pw-tests/action.yml
@@ -90,17 +90,17 @@ runs:
90
done
91
npx playwright test --grep @e2e $PROJECT_PARAMS --shard "$SHARD_NUMBER"
92
93
- - name: Extract shard index
94
- id: extract-shard-index
+ - name: Generate report name
+ id: generate-report-name
95
shell: bash
96
run: |
97
input=${{ inputs.SHARD }}
98
- echo "shardIndex=${input%%/*}" >> $GITHUB_ENV
+ echo "raportName=all-blob-reports-${input%%/*}" >> $GITHUB_ENV
99
100
- name: Upload blob report to GitHub Actions Artifacts
101
uses: actions/upload-artifact@v4
102
if: always()
103
with:
104
- name: all-blob-reports-${{ env.shardIndex }}
+ name: ${{ env.raportName }}
105
path: blob-report
106
retention-days: 1
0 commit comments