Skip to content

Commit

Permalink
fix: specify cache-dependency-path
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdevpereira committed Oct 8, 2022
1 parent 3aa8c32 commit 9a5d533
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ jobs:
with:
version: 7

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"

- uses: google-github-actions/release-please-action@v3
id: release
with:
Expand All @@ -40,6 +34,13 @@ jobs:

- uses: actions/checkout@v3

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
cache-dependency-path: "./pnpm-lock.yaml"

- name: tag major and minor versions
if: ${{ steps.release.outputs.release_created }}
run: |
Expand Down

0 comments on commit 9a5d533

Please sign in to comment.