File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 63
63
if : github.event.release.target_commitish == 'test-package-publishing' && github.event.release.prerelease == false
64
64
runs-on : ubuntu-latest
65
65
env :
66
- TEST_MSG : " REPLACE_ME"
66
+ CHANGELOG_TEXT : " REPLACE_ME"
67
67
steps :
68
68
- name : ⬇️ Checkout repo
69
69
uses : actions/checkout@v3
72
72
run : |
73
73
echo "We are running on: " ${{github.event.release.target_commitish}}
74
74
SEMVER_VERSION=$(npx find-versions-cli ${{ github.event.release.tag_name }})
75
+ CHANGELOG_TEXT=$(npx [email protected] )
75
76
VALID_SEMVER_VERSION=$(node scripts/version-helper.js $SEMVER_VERSION)
76
77
echo "Semver stable version unclean $SEMVER_VERSION"
77
78
echo "Semver stable version valid $VALID_SEMVER_VERSION"
83
84
owner: context.payload.repository.owner.login,
84
85
repo: context.payload.repository.name,
85
86
release_id: context.payload.release.id,
86
- body: process.env.TEST_MSG
87
+ body: process.env.CHANGELOG_TEXT
87
88
})
You can’t perform that action at this time.
0 commit comments