Skip to content

Commit 6459769

Browse files
committed
extract release notes with variable
1 parent 00ac079 commit 6459769

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/build-test-package-publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,10 @@ jobs:
275275

276276
- name: get release notes
277277
id: get_release_notes
278-
run: echo "::set-output name=release_notes::$(poetry run npm run extract-release-notes)"
278+
run: |
279+
REL_NOTES="$(poetry run npm run extract-release-notes)"
280+
echo $REL_NOTES
281+
echo "::set-output name=release_notes::$REL_NOTES"
279282
280283
- name: find assets
281284
id: find_assets

scripts/npm_run.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)