Skip to content

Commit

Permalink
remove relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsimons committed Dec 2, 2024
1 parent b5fb2a9 commit 0bb1d14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ jobs:
- name: Commit changes
shell: pwsh
run: |
git diff > ../changes.patch
$changes = Get-Item ../changes.patch
git diff > changes.patch
$changes = Get-Item changes.patch
Write-Output "Diff size is $($changes.Length) bytes"
Expand All @@ -71,7 +71,7 @@ jobs:
if: ${{ always() }}
with:
name: changes.patch
path: ../changes.patch
path: changes.patch
if-no-files-found: ignore
- name: Notify Slack on failure
if: ${{ failure() }}
Expand Down

0 comments on commit 0bb1d14

Please sign in to comment.