GitHub Repository Releases are great, but lacking any feedback mechanism to let you know a workflow is running, how it did, or where it may have placed third-party assets. release-feedback lets you push updates to your release description during the release workflow.
- uses: jeking3/release-feedback@v1
with:
content: "- Beginning Build"
release: ${{ github.event.release.id }}
token: ${{ secrets.GITHUB_TOKEN }}
The example shows you how to:
- Append to a release description during your workflow.
- Use an environment variable in an action
with
statement through promotion. - Write longer, multi-line descriptions using standard YAML.
We use the example on our own releases so you can see what the results of the example look like.