-
Notifications
You must be signed in to change notification settings - Fork 60
Manually Generate Release Notes
We are currently running into an access issue in one of our CI tools that interferes with the automatic generation of release notes. In the meantime, Release Notes can be manually downloaded from the github api by following the below steps: Steps:
-
Trigger a release.
-
Review the release list to see if the notes have been created. If they haven’t been created, continue to step 3.
-
Open your local
fundamental-styles
project directory. -
Call
npm run release:create -- --repo sap/fundamental-styles --tag v{{version}} --branch master
, and replace the{{version}}
with the new release version (ex. version0.5.0
would look likenpm run release:create -- --repo sap/fundamental-styles --tag v0.5.0 --branch master
-
The script will try to fetch(GET) and transform the release notes and push(POST) them to repo. Once completed, a prepared message like the one below will appear on the console. Example Output:
-
When the POST method throws an error, the only way to add the release notes is to copy and paste them manually to the releases page. See the release notes for the 0.5.0version for more details.