We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b749742 commit e612d27Copy full SHA for e612d27
1 file changed
.github/workflows/deploy.yml
@@ -19,11 +19,15 @@ jobs:
19
20
- name: Install Dependencies
21
run: |
22
- npm install
+ npm ci --include=optional
23
+
24
+ - name: Fix Eleventy Permissions
25
+ run: |
26
+ chmod +x ./node_modules/.bin/eleventy
27
28
- name: Build Site
29
- npm run build
30
+ npx eleventy
31
32
- name: Verify Build
33
@@ -35,4 +39,4 @@ jobs:
35
39
with:
36
40
github_token: ${{ secrets.GITHUB_TOKEN }}
37
41
publish_dir: ./docs
38
- keep_files: false
42
+ keep_files: false
0 commit comments