Skip to content

Commit

Permalink
Merge pull request #131 from NWChemEx-Project/workflow_patch
Browse files Browse the repository at this point in the history
More Boolean Fixes
  • Loading branch information
jwaldrop107 authored Nov 21, 2023
2 parents e199822 + d73776c commit 3bb8525
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/common_merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@ jobs:
shell: bash
# Build the C++ Library if building module docs
- name: Build Library
if: inputs.generate_module_docs == 'true'
if: inputs.generate_module_docs == true
run: cmake --build build --parallel
shell: bash
# Generate the module docs source files
- name: Generate Module Docs
if: inputs.generate_module_docs == 'true'
if: inputs.generate_module_docs == true
uses: NWChemEx-Project/.github/actions/generate_module_docs@master
with:
doc_target: $${{ inputs.doc_target }}
Expand Down
2 changes: 1 addition & 1 deletion actions/generate_module_docs/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ runs:
steps:
- name: Generate Module Documentation
run: |
python3 ${{github.action_path}}/generate_module_dox.py ${{inputs.target}}
python3 ${{github.action_path}}/generate_module_dox.py ${{inputs.doc_target}}
shell: bash

0 comments on commit 3bb8525

Please sign in to comment.