Skip to content

Commit

Permalink
chore: fix actions env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic100 committed Oct 26, 2024
1 parent 79917f5 commit 0b7cb78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
uses: actions/upload-artifact@v4
if: ${{ (success() || failure()) && github.repository == 'mistic100/Photo-Sphere-Viewer' }}
with:
name: e2e-report-${{ github.ref_name }}-$SHORT_SHA
name: e2e-report-${{ github.ref_name }}-${{ env.SHORT_SHA }}
path: cypress/reports/html

- name: test summary
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/shared/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ runs:
if: ${{ !startsWith(github.ref_name, 'dependabot') }}
with:
key: yarn-${{ hashFiles('yarn.lock') }}
path: $YARN_CACHE_DIR
path: ${{ env.YARN_CACHE_DIR }}

- name: yarn cache ro
uses: actions/cache/restore@v4
if: ${{ startsWith(github.ref_name, 'dependabot') }}
with:
key: yarn-${{ hashFiles('yarn.lock') }}
path: $YARN_CACHE_DIR
path: ${{ env.YARN_CACHE_DIR }}

- name: turbo cache
uses: actions/cache@v4
Expand Down

0 comments on commit 0b7cb78

Please sign in to comment.