chore: move update-version to ci

pull/301/head
Muhammad Atif Ali 10 months ago committed by GitHub
parent 7a9f553564
commit c2ec4cbfc6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -37,4 +37,13 @@ jobs:
- name: typos-action
uses: crate-ci/typos@v1.17.2
- name: Lint
run: bun lint
run: |
bun lint
# check for version changes
./update-version.sh
if [[ `git status --porcelain` ]]; then
echo "Version mismatch. Please run ./update-version.sh"
exit 1
else
echo "No changes detected."
fi

Loading…
Cancel
Save