-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: major refactor to make bones independent of bevy with the new …
…`bones_framework`. (#132) Co-authored-by: Jacob LeCoq <[email protected]>
- Loading branch information
1 parent
19748cb
commit 6164d35
Showing
201 changed files
with
14,490 additions
and
5,916 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
use_squash_merge = true | ||
cut_body_after = "_ _ _" | ||
status = [ | ||
"Lint commit message", | ||
"Check Rust formatting", | ||
"Clippy correctness checks (%)", | ||
"Build Docs", | ||
"Miri tests" | ||
] | ||
cut_body_after = "_ _ _" | ||
status = ["Lint commit message", "Check Rust formatting", "Clippy correctness checks (%)", "Build Docs", "Miri tests"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,12 +46,12 @@ jobs: | |
- name: 🔨 Build Rustdoc | ||
run: | | ||
cargo doc --workspace --no-deps | ||
mv target/doc book/src/rustdoc | ||
mkdir -p target/doc-dist | ||
mv target/doc target/doc-dist/rustdoc | ||
- name: 🚀 Deploy | ||
uses: JamesIves/[email protected] | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
with: | ||
branch: gh-pages | ||
folder: ./book/dist | ||
target-folder: book | ||
folder: target/doc-dist |
Oops, something went wrong.