Skip to content

Commit

Permalink
chore: move update-version to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
matifali authored Sep 24, 2024
1 parent 7a9f553 commit c2ec4cb
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,13 @@ jobs:
- name: typos-action
uses: crate-ci/[email protected]
- 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

0 comments on commit c2ec4cb

Please sign in to comment.