We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aa7fb3 commit a074fa0Copy full SHA for a074fa0
.github/workflows/deploy.yml
@@ -31,6 +31,9 @@ jobs:
31
- name: Add .nojekyll file
32
run: touch www/.nojekyll
33
34
+ - name: Copy index.html to 404.html for GitHub Pages routing
35
+ run: cp www/index.html www/404.html
36
+
37
- name: Deploy to GitHub Pages
38
uses: peaceiris/actions-gh-pages@v3
39
with:
angular.json
@@ -33,6 +33,11 @@
"glob": "**/*",
"input": "src/assets",
"output": "assets"
+ },
+ {
+ "glob": "**/*",
+ "input": "public",
40
+ "output": "."
41
}
42
],
43
"styles": ["src/global.scss", "src/theme/variables.scss"],
0 commit comments