Skip to content

Commit 8ff6c00

Browse files
committed
[fix] changelog extraction path in release workflow
The `awk` step now uses `Simplify.Web/CHANGELOG.md` instead of `src/Simplify.Web/CHANGELOG.md` because the job inherits the `working-directory: src` default, making the `src/` prefix redundant.
1 parent 4485964 commit 8ff6c00

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
@@ -59,7 +59,7 @@ jobs:
5959
- name: Extract changelog entry
6060
run: |
6161
awk '/^## \[/{if(f) exit; f=1; next} f' \
62-
src/Simplify.Web/CHANGELOG.md \
62+
Simplify.Web/CHANGELOG.md \
6363
> /tmp/release_notes.md
6464
6565
- name: Create release

0 commit comments

Comments
 (0)