We have a GitHub Actions workflow triggered by the creation of a release, i.e.,
on:
release:
types: [created]
How can we add the built files to the triggereing release as an asset from within the workflow?
I have seen this answer recommending softprops/action-gh-release
, but that seems to apply to workflows triggered by pushes (with tags) and not "on release".