Skip to content

Commit 5115a39

Browse files
committed
Make Release CI manually callable (#1229)
* Fix call to robinraju/release-downloader * Make the releaser manually callable with a release_tag argument (cherry picked from commit 5a5a3cc)
1 parent 5bb22c4 commit 5115a39

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/releaser.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ name: Release
33
on:
44
release:
55
types: [published]
6+
# Can be called manually
7+
workflow_dispatch:
8+
inputs:
9+
release_tag:
10+
description: 'Release tag'
11+
default: 'latest'
12+
type: string
613

714
env:
815
DOCUMENTATION_CNAME: 'dpf.docs.pyansys.com'
@@ -18,6 +25,7 @@ jobs:
1825
- name: "Download Release Assets"
1926
uses: robinraju/[email protected]
2027
with:
28+
tag: ${{ github.event.inputs.release_tag || 'latest' }}
2129
fileName: "*.whl"
2230
tarBall: false
2331
zipBall: false

0 commit comments

Comments
 (0)