Skip to content

Commit a4806e1

Browse files
committed
[spec] fix changelog path in release job
The release step was using an absolute path (`src/...`) but the working directory is already `src`, resulting in a wrong path (`src/src/...`).
1 parent f5f7ada commit a4806e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Extract changelog entry
5757
run: |
5858
awk '/^## \[/{if(f) exit; f=1; next} f' \
59-
src/Simplify.Web.MessageBox/CHANGELOG.md \
59+
Simplify.Web.MessageBox/CHANGELOG.md \
6060
> /tmp/release_notes.md
6161
6262
- name: Create release

0 commit comments

Comments
 (0)