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 f97c4bd commit 0de7b14Copy full SHA for 0de7b14
.github/workflows/github-pages.yml
@@ -40,17 +40,21 @@ jobs:
40
- name: Install RustyPage
41
run: cargo install --path .
42
43
+ # Make public directory
44
+ - name: Make public directory
45
+ run: mkdir ./public
46
+
47
# Build static page
48
- name: Build RustyPage
- run: rustypage --config-file ./docs/config/examples/full.toml
49
+ run: rustypage --config-file ./docs/config/examples/full.toml ./public/index.html
50
51
# Setup Pages
52
- name: Setup Pages
53
uses: actions/configure-pages@v5
54
- name: Upload artifact
55
uses: actions/upload-pages-artifact@v3
56
with:
- path: './index.html'
57
+ path: './public'
58
59
# Deploy to GitHubPages
60
- name: Deploy to GitHub Pages
0 commit comments