Skip to content

Commit

Permalink
Fix RelativeCI format issues (#18194)
Browse files Browse the repository at this point in the history
  • Loading branch information
silamon authored Oct 12, 2023
1 parent c5056eb commit 51a6376
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/relative-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- name: Send bundle stats and build information to RelativeCI
uses: relative-ci/[email protected]
with:
key: ${{ secrets[format('RELATIVE_CI_KEY_{1}_{2}', matrix.bundle, matrix.build)] }}
key: ${{ secrets[format('RELATIVE_CI_KEY_{0}_{1}', matrix.bundle, matrix.build)] }}
token: ${{ github.token }}
slug: ${{ format('{1}-{2}', matrix.bundle, matrix.build) }}
artifactName: ${{ format('{1}-bundle-stats', matrix.bundle) }}
artifactWebpackStatsFile: ${{ format('{1}-{2}.json', matrix.bundle, matrix.build) }}
slug: ${{ format('{0}-{1}', matrix.bundle, matrix.build) }}
artifactName: ${{ format('{0}-bundle-stats', matrix.bundle) }}
artifactWebpackStatsFile: ${{ format('{0}-{1}.json', matrix.bundle, matrix.build) }}

0 comments on commit 51a6376

Please sign in to comment.