Skip to content

Commit

Permalink
chore: update versions in files
Browse files Browse the repository at this point in the history
Running just build-all will cause these changes, commiting them so that building does not modify source controlled files.
  • Loading branch information
stuartwdouglas committed Aug 14, 2024
1 parent acb7f5d commit cbcfd39
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,14 @@ jobs:
run: just init-db
- name: Rebuild All
run: just build-all
- name: Check No SCM Changes
run: |
if [[ -n $(git status -s) ]]
then
echo "Running the build resulted in changes to git controlled files:"
git --no-pager diff
exit 1
fi
docs:
name: Build Docs
runs-on: ubuntu-latest
Expand Down

0 comments on commit cbcfd39

Please sign in to comment.