We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19229bb commit 65db1e0Copy full SHA for 65db1e0
1 file changed
.github/workflows/python_release.yaml
@@ -142,6 +142,7 @@ jobs:
142
exit 1
143
fi
144
145
+ echo "full_version=$FULL_VERSION" >> $GITHUB_OUTPUT
146
echo "version=$VERSION" >> $GITHUB_OUTPUT
147
echo "alias=$ALIAS" >> $GITHUB_OUTPUT
148
echo "hidden=$HIDDEN" >> $GITHUB_OUTPUT
@@ -158,6 +159,7 @@ jobs:
158
159
- name: Deploy docs with mike
160
run: |
161
cd python
162
+ FULL_VERSION="${{ steps.version.outputs.full_version }}"
163
VERSION="${{ steps.version.outputs.version }}"
164
ALIAS="${{ steps.version.outputs.alias }}"
165
HIDDEN="${{ steps.version.outputs.hidden }}"
0 commit comments