Skip to content

Commit 6919bcf

Browse files
committed
Only run on workflow_dispatch
1 parent c4a2047 commit 6919bcf

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/create-release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
name: Create Release
44

55
on:
6-
push:
7-
tags:
8-
- 'v*'
6+
workflow_dispatch:
7+
inputs:
8+
tag:
9+
description: Release tag to create
10+
required: true
11+
type: string
912

1013
jobs:
1114
release:
@@ -19,3 +22,4 @@ jobs:
1922
generateReleaseNotes: true
2023
name: ${{ github.event.repository.name }} ${{ github.ref_name }}
2124
skipIfReleaseExists: true
25+
tag: ${{ github.inputs.tag }}

0 commit comments

Comments
 (0)