Skip to content

Commit

Permalink
Managed by Terraform: Update notify-integration-release-via-tag githu…
Browse files Browse the repository at this point in the history
…b workflow
  • Loading branch information
nywilken committed Feb 5, 2024
1 parent 7954ce7 commit d28b9b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/notify-integration-release-via-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,14 @@ jobs:
run: make generate
- shell: bash
run: |
if [[ -z "$(git status -s)" ]]; then
uncommitted="$(git status -s)"
if [[ -z "$uncommitted" ]]; then
echo "OK"
else
echo "Docs have been updated, but the compiled docs have not been committed."
echo "Run 'make generate', and commit the result to resolve this error."
echo "Generated but uncommitted files:"
echo "$uncommitted"
exit 1
fi
# Perform the Release
Expand Down

0 comments on commit d28b9b4

Please sign in to comment.