We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d822c4 commit f4659e7Copy full SHA for f4659e7
.github/workflows/comment-diffs.yml
@@ -220,11 +220,17 @@ jobs:
220
echo "DIFF_IS_NON_EMPTY=0" >> $GITHUB_OUTPUT
221
fi
222
223
+ # Remove outputs if it exists
224
+ rm -rf ./outputs || true
225
+
226
+ # Copy the outputs to cwd
227
+ cp -r $output_path ./outputs
228
229
- uses: actions/upload-artifact@v3
230
if: ${{ steps.create-diffs.outputs.DIFF_IS_NON_EMPTY == '1' }}
231
with:
232
name: outputs
- path: ../outputs/*.txt
233
+ path: outputs/*.txt
234
235
read-artifacts-and-comment:
236
name: Read the artifacts and comment
0 commit comments