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 15, 2024
1 parent df046cd commit 149b0dd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,15 @@ 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 status -s
git --no-pager diff
exit 1
fi
docs:
name: Build Docs
runs-on: ubuntu-latest
Expand Down

0 comments on commit 149b0dd

Please sign in to comment.