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 6363 if : github.event.release.target_commitish == 'test-package-publishing' && github.event.release.prerelease == false
6464 runs-on : ubuntu-latest
6565 env :
66- TEST_MSG : " REPLACE_ME"
66+ CHANGELOG_TEXT : " REPLACE_ME"
6767 steps :
6868 - name : ⬇️ Checkout repo
6969 uses : actions/checkout@v3
7272 run : |
7373 echo "We are running on: " ${{github.event.release.target_commitish}}
7474 SEMVER_VERSION=$(npx find-versions-cli ${{ github.event.release.tag_name }})
75+ CHANGELOG_TEXT=$(npx conventional-changelog-cli@2.2.2)
7576 VALID_SEMVER_VERSION=$(node scripts/version-helper.js $SEMVER_VERSION)
7677 echo "Semver stable version unclean $SEMVER_VERSION"
7778 echo "Semver stable version valid $VALID_SEMVER_VERSION"
8384 owner: context.payload.repository.owner.login,
8485 repo: context.payload.repository.name,
8586 release_id: context.payload.release.id,
86- body: process.env.TEST_MSG
87+ body: process.env.CHANGELOG_TEXT
8788 })
You can’t perform that action at this time.
0 commit comments