Skip to content

Commit

Permalink
Managed by Terraform: Update notify-integration-release-via-manual gi…
Browse files Browse the repository at this point in the history
…thub workflow
  • Loading branch information
nywilken committed Feb 5, 2024
1 parent 123cf3d commit 0595168
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/notify-integration-release-via-manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,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 0595168

Please sign in to comment.