Skip to content

Commit dd10f4e

Browse files
committed
ci: add input to workflow_dispatch, del tag from test
1 parent e0dcbab commit dd10f4e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/release-test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: Release to TestPyPI
22

33
on:
44
push:
5-
tags:
6-
- "v*.*.*a*"
7-
- "v*.*.*dev*"
85
workflow_dispatch:
96

107
permissions:

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ name: Release to PyPI
22

33
on:
44
push:
5-
tags:
6-
- "v*.*.*"
75
workflow_dispatch:
6+
inputs:
7+
tag:
8+
description: "Tag to release (e.g. v1.2.3 or v1.2.3rc1)"
9+
required: true
10+
type: string
811

912
permissions:
1013
contents: read

0 commit comments

Comments
 (0)