We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
$GITHUB_OUTPUT
1 parent 95204ad commit 56b4f4eCopy full SHA for 56b4f4e
.github/workflows/release.yml
@@ -49,7 +49,13 @@ jobs:
49
50
- name: Extract changelog entry
51
id: changelog-entry
52
- run: echo "content=$(awk '/^## \[${{ steps.new-version.outputs.version }}\]/{flag=1; next} /^## /{flag=0} flag' CHANGELOG.md)" >> "${GITHUB_OUTPUT}"
+ # See https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings
53
+ run: |
54
+ {
55
+ echo 'content<<CHANGELOG_END'
56
+ awk '/^## \[${{ steps.new-version.outputs.version }}\]/{flag=1; next} /^## /{flag=0} flag' CHANGELOG.md
57
+ echo CHANGELOG_END
58
+ } >> "${GITHUB_OUTPUT}"
59
60
- name: Publish to crates.io
61
# cargo-release calculates the dependency graph for us, and also skips any already
0 commit comments