Skip to content

Commit

Permalink
Update create-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanSoltis authored Jul 17, 2023
1 parent 5cc3806 commit a6c9366
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
on:
workflow_dispatch:
inputs:
version:
required: true

defaults:
run:
Expand All @@ -20,7 +23,9 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: v3.0.0
release_name: v3.0.0
tag_name: ${{ github.event.inputs.version }}
release_name: ${{ github.event.inputs.version }}
body: |
(${{ github.event.inputs.version }} Release Notes)[https://github.com/mspnp/AzureNamingTool/wiki/${{ github.event.inputs.version }}]
draft: false
prerelease: false

0 comments on commit a6c9366

Please sign in to comment.