Skip to content

Commit

Permalink
Declare public API in CI
Browse files Browse the repository at this point in the history
If this is incorrect, a human is expected to notice.
  • Loading branch information
Perksey authored Oct 22, 2024
1 parent c88f278 commit 9e0c3c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/nuke/Native/Core.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void PrUpdatedNativeBinary(string name)
Git("fetch --all", RootDirectory);
Git("pull");
Git("add -f src/Native/*/runtimes/*/native/*", RootDirectory);
Git("add **/*.aar **/*.java", RootDirectory);
Git("add **/*.aar **/*.java **/PublicAPI.Unshipped.txt", RootDirectory);
var newBranch = $"ci/{curBranch}/{name.ToLower().Replace(' ', '_')}_bins";
var curCommit = GitCurrentCommit(RootDirectory);
var commitCmd = InheritedShell
Expand Down

0 comments on commit 9e0c3c2

Please sign in to comment.