Skip to content

Commit

Permalink
ci: remove first slash
Browse files Browse the repository at this point in the history
  • Loading branch information
motea927 committed Jul 1, 2023
1 parent 7ce15aa commit 5e400b0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Cache dist
uses: actions/cache@v3
with:
path: /packages/core/dist
path: packages/core/dist
key: ${{ github.sha }}

build-nuxt:
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Restore core dist cache
uses: actions/cache@v3
with:
path: /packages/core/dist
path: packages/core/dist
key: ${{ github.sha }}
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Cache nuxt dist
uses: actions/cache@v3
with:
path: /packages/nuxt/dist
path: packages/nuxt/dist
key: ${{ github.sha }}

test:
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- name: Restore dist cache
uses: actions/cache@v3
with:
path: /packages/core/dist
path: packages/core/dist
key: ${{ github.sha }}
- name: Release
env:
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
- name: Restore dist cache
uses: actions/cache@v3
with:
path: /packages/nuxt/dist
path: packages/nuxt/dist
key: ${{ github.sha }}
- name: Release
env:
Expand Down

0 comments on commit 5e400b0

Please sign in to comment.