Skip to content

Commit

Permalink
gh-actions/upload/diff: Fix diff path (#877)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <[email protected]>
  • Loading branch information
phlax authored Oct 22, 2023
1 parent f0a893b commit 83803bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gh-actions/upload/diff/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ runs:
- uses: actions/upload-artifact@v3
with:
name: ${{ inputs.name }}.diff
path: ${{ steps.diff.output.tmpdir }}/${{ inputs.name }}.diff
path: ${{ steps.diff.outputs.tmpdir }}/${{ inputs.name }}.diff
- run: |
rm -rf ${{ steps.diff.output.tmpdir }}
rm -rf ${{ steps.diff.outputs.tmpdir }}
name: Remove tmpdir
shell: bash

0 comments on commit 83803bd

Please sign in to comment.