We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cfe718 commit 9bb12f3Copy full SHA for 9bb12f3
1 file changed
.github/workflows/release-please.yml
@@ -35,6 +35,6 @@ jobs:
35
run: |
36
CURRENT_NOTES=$(gh release view ${{ steps.release.outputs.tag_name }} --json body -q '.body')
37
HEADER=$(echo "$CURRENT_NOTES" | awk '/^## / {print; exit}')
38
- TEMPLATE=$(cat ../RELEASE_TEMPLATE.md)
+ TEMPLATE=$(cat "$GITHUB_WORKSPACE/.github/RELEASE_TEMPLATE.md")
39
BODY=$(echo "$CURRENT_NOTES" | sed "0,/^## /d")
40
gh release edit ${{ steps.release.outputs.tag_name }} --notes "${HEADER}${TEMPLATE}${BODY}"
0 commit comments