Skip to content

Commit

Permalink
Use distinct names for artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
bookernath committed Oct 19, 2024
1 parent 2698035 commit 2119b03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull_request_review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
${{ runner.os }}-node-${{ matrix.node }}
- name: Install Stencil CLI Dependency
run: npm install -g @bigcommerce/stencil-cli
Expand All @@ -46,13 +46,13 @@ jobs:
run: npx grunt check

- name: Validate theme successfully bundles
run: npx stencil bundle --name bundle
run: npx stencil bundle --name ${{ runner.os }}-node-${{ matrix.node }}-bundle

- name: Upload bundled theme
uses: actions/upload-artifact@v4
with:
name: Bundled Theme
path: bundle.zip
path: ${{ runner.os }}-node-${{ matrix.node }}-bundle.zip

- name: Upload bundle analysis
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 2119b03

Please sign in to comment.