Skip to content

Commit 12d6c9b

Browse files
committed
ci: added workflow dispatch
[ci skip]
1 parent 6a706c4 commit 12d6c9b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Diff for: .github/workflows/create-gh-release.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@ permissions:
66
on:
77
push:
88
tags:
9-
- v[0-9]+.*
10-
9+
- v[0-9]+.*
10+
workflow_dispatch:
11+
inputs:
12+
tag:
13+
description: "Tag"
14+
required: true
15+
type: string
1116
jobs:
1217
create-release:
1318
runs-on: ubuntu-latest
@@ -19,3 +24,4 @@ jobs:
1924
draft: true
2025
env:
2126
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
27+
GITHUB_REF: ${{ inputs.tag }}

0 commit comments

Comments
 (0)