Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kc1r74p committed Jan 24, 2021
1 parent 0dd2d6c commit 2b238df
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ name: Release
on:
workflow_dispatch:
inputs:
tags:
description: 'Unused'
name:
description: 'Tag and Version to release as'
required: true
default: '1.0.0'

jobs:
build_and_release:
Expand All @@ -30,8 +32,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
tag_name: ${{ github.event.inputs.name }}
release_name: Release ${{ github.event.inputs.name }}
draft: false
prerelease: false

Expand Down

0 comments on commit 2b238df

Please sign in to comment.