Skip to content

Commit e3b5671

Browse files
committed
fix doc gen workflow error
1 parent 4516f4a commit e3b5671

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/doc_gen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
env:
2727
SSH_DEPLOY_KEY: ${{ secrets.LUA_DOCUMENTATION_SSH_KEY }}
2828
with:
29-
source-directory: 'assets/scripts/doc/pages'
29+
source-directory: 'assets/scripts/doc/BevyAPI'
3030
destination-github-username: 'makspll'
3131
destination-repository-name: 'bevy_mod_scripting_lua'
3232
user-email: [email protected]

bevy_script_api/src/generated.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10039,7 +10039,7 @@ impl APIProvider for LuaBevyAPIProvider {
1003910039
.map_err(|e| ScriptError::Other(e.to_string()))
1004010040
}
1004110041
fn get_doc_fragment(&self) -> Option<Self::DocTarget> {
10042-
Some(LuaDocFragment::new("MyAPI", |tw| {
10042+
Some(LuaDocFragment::new("BevyAPI", |tw| {
1004310043
tw
1004410044
.document_global_instance::<BevyAPIGlobals>().expect("Something went wrong documenting globals")
1004510045
.process_type::<LuaAlignContent>()

0 commit comments

Comments
 (0)