We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5115a39 commit ff3c957Copy full SHA for ff3c957
.github/workflows/releaser.yml
@@ -10,6 +10,10 @@ on:
10
description: 'Release tag'
11
default: 'latest'
12
type: string
13
+ checkout_ref:
14
+ description: 'Ref to checkout for doc index (default to current branch)'
15
+ default: ''
16
+ type: string
17
18
env:
19
DOCUMENTATION_CNAME: 'dpf.docs.pyansys.com'
@@ -78,6 +82,8 @@ jobs:
78
82
steps:
79
83
- name: "Install Git and clone project"
80
84
uses: actions/checkout@v4
85
+ with:
86
+ ref: ${{ github.event.inputs.checkout_ref || '' }}
81
87
88
- name: "Install the package requirements"
89
run: pip install -e .
0 commit comments