Skip to content

Commit

Permalink
Change syntax for run_docs condition
Browse files Browse the repository at this point in the history
  • Loading branch information
fuhrmanator authored Jul 30, 2024
1 parent bcf34ae commit f2c2214
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,11 @@ jobs:
with:
args: -v -tsvg FamixTypeScript-traits.puml FamixTypeScript.puml

- name: Debug run_docs value
run: echo "run_docs is ${{ inputs.run_docs }}"

- name: Move diagram to doc space
if: inputs.run_docs == 'true'
if: ${{ inputs.run_docs == 'true' }}
run: |
mkdir -p doc-uml
mv *.svg doc-uml
Expand Down

0 comments on commit f2c2214

Please sign in to comment.