Add create release example
Description of the Change
The current "Deploy on publishing a new release and attach a ZIP file to the release" example uses actions/upload-release-asset which is deprecated.
Attaching files to an existing release doesn't seem that common in my research, the maintained GitHub release actions seem to focus on creating a release, optionally with files e.g. softprops/action-gh-release.
This adds a "Deploy on pushing a new tag and create release with attached ZIP" example to the README which is perhaps a more suitable example.
The implication with creating the release in an action is the changelog will be generated in the workflow too. I've omitted that from my example but would be happy to include if you like, perhaps there could be an /examples folder in this repo.
Hi there - I'm not sure I agree with your assessment that attaching files to releases after creation is uncommon, but perfectly happy to have more examples. I do think that at this point there probably should be an examples directory with different example workflows in there, so if you'd like to rework this to start that that would be great.
@AlecRust any chance you want to update the PR here to add your example as a workflow file in an examples directory with a linked reference from the readme perhaps?
@AlecRust note that I pulled your work from here into #143