We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92e33c9 commit 9c16de9Copy full SHA for 9c16de9
.github/workflows/deploy.yml
@@ -41,7 +41,8 @@ jobs:
41
id: pages
42
uses: actions/configure-pages@v4
43
- name: Install dependencies
44
- run: "cd docs && [[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
+ run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
45
+ working-directory: ./docs
46
- name: Build production website
47
env:
48
HUGO_ENVIRONMENT: production
@@ -51,6 +52,7 @@ jobs:
51
52
npm run build \
53
-- \
54
--baseURL "${{ steps.pages.outputs.base_url }}/"
55
56
- name: Copy to backslashphp/backslashphp.github.io
57
uses: peaceiris/actions-gh-pages@v4
58
with:
0 commit comments