Skip to content

Commit

Permalink
fix Generate policies of ci
Browse files Browse the repository at this point in the history
  • Loading branch information
akiyatomohiro committed Dec 12, 2024
1 parent c5a98cf commit 317bfdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci_policies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ jobs:
- name: Generate policies
run: |
set -e
make gen-policies
if [ $? -ne 0 ]; then
if ! make gen-policies; then
echo "Policy generation failed"
exit 1
fi
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/update_policies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ jobs:
- name: Generate policies
run: |
set -e
make gen-policies
if [ $? -ne 0 ]; then
if ! make gen-policies; then
echo "Policy generation failed"
exit 1
fi
Expand Down

0 comments on commit 317bfdd

Please sign in to comment.