Skip to content

Commit d09e2c2

Browse files
authored
chore: update release workflow triggers and inputs
Modify release workflow to trigger on published releases and allow manual dispatch with tag input.
1 parent 2ca1813 commit d09e2c2

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
name: Release
22

33
on:
4-
push:
5-
tags:
6-
- "v*"
4+
release:
5+
types:
6+
- published
7+
workflow_dispatch:
8+
inputs:
9+
tag_name:
10+
description: Existing release tag to build and upload assets for
11+
required: true
12+
type: string
713

814
permissions:
915
contents: write

0 commit comments

Comments
 (0)