Skip to content

Commit d5fbbd0

Browse files
committed
Rename build directory to build and add it to .gitignore
1 parent e5782be commit d5fbbd0

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Upload website
3737
uses: actions/upload-pages-artifact@v3
3838
with:
39-
path: html
39+
path: build
4040

4141
deploy:
4242
needs: [ build ]

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.DS_Store
22
/target/
3+
/build/
34
**/*.rs.bk
45
/node_modules
56
/static/styles/*.map

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ fn main() -> anyhow::Result<()> {
8181
let teams = load_rust_teams()?;
8282

8383
// Prepare build directory
84-
let output_dir = PathBuf::from("html");
84+
let output_dir = PathBuf::from("build");
8585
let _ = std::fs::remove_dir_all(&output_dir);
8686
std::fs::create_dir_all(&output_dir)?;
8787

0 commit comments

Comments
 (0)