Skip to content

Commit 9bb12f3

Browse files
authored
ci: fix release template generation (again)
1 parent 2cfe718 commit 9bb12f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ jobs:
3535
run: |
3636
CURRENT_NOTES=$(gh release view ${{ steps.release.outputs.tag_name }} --json body -q '.body')
3737
HEADER=$(echo "$CURRENT_NOTES" | awk '/^## / {print; exit}')
38-
TEMPLATE=$(cat ../RELEASE_TEMPLATE.md)
38+
TEMPLATE=$(cat "$GITHUB_WORKSPACE/.github/RELEASE_TEMPLATE.md")
3939
BODY=$(echo "$CURRENT_NOTES" | sed "0,/^## /d")
4040
gh release edit ${{ steps.release.outputs.tag_name }} --notes "${HEADER}${TEMPLATE}${BODY}"

0 commit comments

Comments
 (0)