We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0511a67 commit 26d7559Copy full SHA for 26d7559
2 files changed
.github/workflows/gh-pages.yml
@@ -28,15 +28,13 @@ jobs:
28
uses: actions/checkout@v3
29
- name: Build Website
30
working-directory: 08-Website
31
- run: npm install && npm run build
+ run: npm install && npm run build && npm run clean
32
- name: Setup Github Pages
33
uses: actions/configure-pages@v3
34
- name: Upload Github Pages
35
uses: actions/upload-pages-artifact@v2
36
with:
37
- path: |
38
- 08-Website
39
- !08-Website/node_modules
+ path: "08-Website"
40
- name: Deploy GitHub Pages
41
id: deployment
42
uses: actions/deploy-pages@v2
08-Website/package.json
@@ -14,6 +14,7 @@
14
},
15
"scripts": {
16
"build": "grunt",
17
+ "clean": "grunt clean:distclean",
18
"serve": "serve -l 12345 ."
19
}
20
0 commit comments