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
tag: ${{ steps.release.outputs.version }} # The name of the tag to be released
133
+
title: ${{ steps.release.outputs.version }} # The title for the release
134
+
notes: ${{ steps.release.outputs.notes }} # The release notes generated in the previous step
135
+
draft: true # The release will be created as a draft
136
+
prerelease: ${{ contains(steps.release.outputs.version, '-rc') || contains(steps.release.outputs.version, '-beta') || contains(steps.release.outputs.version, '-alpha') }} # Conditions to mark the release as a pre-release
73
137
74
138
concurrency: # Allows controlling the concurrency level of the job in the build pipeline.
0 commit comments