1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-16 02:27:00 +02:00

adding the release tag name to the manual trigger for the release action

This commit is contained in:
Joseph Flinn 2021-01-19 17:31:23 +00:00
parent 94b2e53c3f
commit 9e59dd6d63

View File

@ -1,7 +1,11 @@
name: Release
on:
workflow_dispatch: {}
workflow_dispatch:
inputs:
release_tag_name:
description: 'Release Tag Name (vX.X.X)'
required: true
jobs:
@ -360,4 +364,4 @@ jobs:
shell: pwsh
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
RELEASE_TAG_NAME: ${{ github.event.release.tag_name }}
RELEASE_TAG_NAME: ${{ github.event.input.release_tag_name }}