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.
build
1 parent e5782be commit d5fbbd0Copy full SHA for d5fbbd0
.github/workflows/main.yml
@@ -36,7 +36,7 @@ jobs:
36
- name: Upload website
37
uses: actions/upload-pages-artifact@v3
38
with:
39
- path: html
+ path: build
40
41
deploy:
42
needs: [ build ]
.gitignore
@@ -1,5 +1,6 @@
1
.DS_Store
2
/target/
3
+/build/
4
**/*.rs.bk
5
/node_modules
6
/static/styles/*.map
src/main.rs
@@ -81,7 +81,7 @@ fn main() -> anyhow::Result<()> {
81
let teams = load_rust_teams()?;
82
83
// Prepare build directory
84
- let output_dir = PathBuf::from("html");
+ let output_dir = PathBuf::from("build");
85
let _ = std::fs::remove_dir_all(&output_dir);
86
std::fs::create_dir_all(&output_dir)?;
87
0 commit comments