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.
1 parent 00ac079 commit 6459769Copy full SHA for 6459769
.github/workflows/build-test-package-publish.yml
@@ -275,7 +275,10 @@ jobs:
275
276
- name: get release notes
277
id: get_release_notes
278
- run: echo "::set-output name=release_notes::$(poetry run npm run extract-release-notes)"
+ run: |
279
+ REL_NOTES="$(poetry run npm run extract-release-notes)"
280
+ echo $REL_NOTES
281
+ echo "::set-output name=release_notes::$REL_NOTES"
282
283
- name: find assets
284
id: find_assets
scripts/npm_run.py
0 commit comments