feat: add support for building client from scripts #97
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new workflow for automatically regenerating SDK clients when proto files change, updates the build system to reflect these changes, and removes outdated refactor documentation. The most important changes include adding a GitHub Actions workflow for proto code generation, modifying the Rust workspace configuration, updating the
Makefile
to include a target for regenerating SDKs, and removing obsolete refactor documentation.Automation for Proto Code Generation:
.github/workflows/proto-codegen.yml
: Added a GitHub Actions workflow to detect changes in proto files, regenerate SDK clients, and create a pull request with the updated clients.Build System Updates:
Cargo.toml
: Updated the Rust workspace configuration to movesdk/rust-grpc-client
to theexclude
list and addedtools/proto-codegen
to the workspace members.Makefile Enhancements:
Makefile
: Added aregenerate-sdks
target to regenerate SDK clients from proto files and updated thehelp
target to include this new command. [1] [2] [3]Documentation Cleanup:
refactor-docs/00-quick-reference.md
,refactor-docs/01-refactor-overview.md
, andrefactor-docs/02-phase1-infrastructure.md
, as they are no longer relevant to the current workflow. [1] [2] [3]