Skip to content

Commit 1829e5c

Browse files
committed
Fix path for SHA generation output in PR checks workflow
1 parent b685290 commit 1829e5c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pr-to-stable.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
2929
- name: Generate SHA of lib/ folder
3030
run: |
31-
(cd new_version/lib && find . -type f -exec sha1sum {} \; | sort | sha1sum | awk '{print $1}') > ../lib_folder.sha
32-
cat ../lib_folder.sha
31+
(cd new_version/lib && find . -type f -exec sha1sum {} \; | sort | sha1sum | awk '{print $1}') > lib_folder.sha
32+
cat lib_folder.sha
3333
3434
- name: Generate SHA of pubspec.yaml
3535
run: |

0 commit comments

Comments
 (0)