We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5a8894 commit e0637a5Copy full SHA for e0637a5
.github/workflows/astro.yml
@@ -59,7 +59,9 @@ jobs:
59
with:
60
node-version: "20"
61
cache: ${{ steps.detect-package-manager.outputs.manager }}
62
- cache-dependency-path: ${{ env.BUILD_PATH }}/${{ steps.detect-package-manager.outputs.lockfile }}
+ # Fix the path to the lockfile by removing the BUILD_PATH variable
63
+ # since we're already in the correct directory
64
+ cache-dependency-path: ${{ steps.detect-package-manager.outputs.lockfile }}
65
- name: Setup Pages
66
id: pages
67
uses: actions/configure-pages@v5
0 commit comments