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 5a5a3cc commit 85e80b0Copy full SHA for 85e80b0
.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'
@@ -80,6 +84,8 @@ jobs:
80
84
steps:
81
85
- name: "Install Git and clone project"
82
86
uses: actions/checkout@v4
87
+ with:
88
+ ref: ${{ github.event.inputs.checkout_ref || '' }}
83
89
90
- name: "Install the package requirements"
91
run: pip install -e .
0 commit comments