Skip to content

Commit

Permalink
perf test: fix snap artifact names
Browse files Browse the repository at this point in the history
By mistake, we're using the same name for both snap artifacts,
which is why the snap upload fails.

This commit will update the artifact names to match the snap file
names.
  • Loading branch information
petrutlucian94 committed Jan 29, 2025
1 parent 4ed0ee7 commit ce5ca16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/performance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ jobs:
if: failure()
uses: actions/upload-artifact@v4
with:
name: base
name: base-code.snap
path: ${{ github.workspace }}/base-code.snap
- name: Upload head.snap
if: failure()
uses: actions/upload-artifact@v4
with:
name: base
name: head.snap
path: ${{ github.workspace }}/head.snap

0 comments on commit ce5ca16

Please sign in to comment.