Skip to content

Commit

Permalink
fix: Implement workaround for ace in the verify-codegen action
Browse files Browse the repository at this point in the history
  • Loading branch information
jwiesler committed Apr 26, 2024
1 parent 642ea31 commit 79c1f6f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/async-stripe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ jobs:
**/*.rs
- name: report changed files
if: steps.verify-changed-files.outputs.files_changed == 'true'
env:
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
run: |
echo "Some files changed after code generation: ${{ steps.verify-changed-files.outputs.changed_files }}"
echo "Some files changed after code generation: $CHANGED_FILES"
exit 1
clippy:
Expand Down

0 comments on commit 79c1f6f

Please sign in to comment.