Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ name: Release
on:
release:
types: [published]
# Can be called manually
workflow_dispatch:
inputs:
release_tag:
description: 'Release tag'
default: 'latest'
type: string

env:
DOCUMENTATION_CNAME: 'dpf.docs.pyansys.com'
Expand All @@ -19,6 +26,7 @@ jobs:
- name: "Download Release Assets"
uses: robinraju/[email protected]
with:
tag: ${{ github.event.inputs.release_tag || 'latest' }}
fileName: "*.whl"
tarBall: true
zipBall: true
Expand Down