We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8f359f commit 00135b8Copy full SHA for 00135b8
1 file changed
.github/actions/build_docs/action.yml
@@ -83,8 +83,6 @@ runs:
83
84
- name: Publish docs
85
if: github.event_name != 'pull_request' && inputs.publish == 'true' && inputs.SECRET_docs_location != ''
86
- env:
87
- DOCS_LOCATION: ${{ inputs.SECRET_docs_location }}
88
shell: bash -l {0}
89
run: |
90
if [[ "${#DOCS_LOCATION}" ]]; then
@@ -98,7 +96,7 @@ runs:
98
96
echo "Publish docs"
99
97
echo "============================================================="
100
cd openmdao/docs
101
- python upload_doc_version.py openmdao_book/_build/html/ ${DOCS_LOCATION}
+ python upload_doc_version.py openmdao_book/_build/html/ ${{ inputs.SECRET_docs_location }}
102
else
103
echo "Docs destination not available."
104
fi
0 commit comments