You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the way i'm using this workflow is in a generate_tagged_release workflow via workflow_dispatch, where our workflow enforces guidelines on versioning, tagging, and releases, and then kicks off subsequent build actions.
in this case, we could have both the release marked GA or prerelease, the user supplies the desired release tag matching our constraints (eg v1.2.1 or v1.2.1-RC for prerelease), which then creates the tag and release, ensuring conformity, and then kicks of subsequent build and other CI and CD processes, generating prerelease or GA artifacts and so on.
adding additional notes input might make sense for teams including additional info, links to release documentation, etc, which may not be available just from commit history etc.
The text was updated successfully, but these errors were encountered:
thoughts on extending the action to support? to include:
could modify action.yaml to include under inputs:
and then update
entrypoint.sh
to read:the way i'm using this workflow is in a
generate_tagged_release
workflow viaworkflow_dispatch
, where our workflow enforces guidelines on versioning, tagging, and releases, and then kicks off subsequent build actions.in this case, we could have both the release marked GA or prerelease, the user supplies the desired release tag matching our constraints (eg
v1.2.1
orv1.2.1-RC
for prerelease), which then creates the tag and release, ensuring conformity, and then kicks of subsequent build and other CI and CD processes, generating prerelease or GA artifacts and so on.adding additional notes input might make sense for teams including additional info, links to release documentation, etc, which may not be available just from commit history etc.
The text was updated successfully, but these errors were encountered: