Skip to content

Commit

Permalink
chore: fix patch uploads (#98)
Browse files Browse the repository at this point in the history
Fixes #
  • Loading branch information
corymhall authored Nov 11, 2024
1 parent 5f38907 commit ac72131
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ buildWorkflow?.on({
buildWorkflow?.file?.patch(JsonPatch.replace(
'/jobs/build/steps/4/run', [
'git add .',
'git diff --staged --patch --binary --exit-code > .repo.patch || echo "self_mutation_happened=true" >> $GITHUB_OUTPUT',
'git diff --staged --patch --binary --exit-code > repo.patch || echo "self_mutation_happened=true" >> $GITHUB_OUTPUT',
].join('\n'),
));
buildWorkflow?.file?.patch(JsonPatch.add(
Expand Down

0 comments on commit ac72131

Please sign in to comment.