Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cli): only publish if changes detected since last release
The changes in this commit focus on the CI workflow for publishing the CLI. The main changes are: 1. The publish job now checks if there are any changes between the last release tag and the new version being published. This is done by using the `git diff` command to compare the changes in the `client/go` directory. 2. If no changes are detected, the workflow will skip the publish step. This ensures that the CLI is only published when there are actual changes, preventing unnecessary releases. 3. The workflow also handles the case where a dev version (starting with "0.0.0-dev") is being used, in which case the changes check is skipped.
- Loading branch information