Skip to content

Commit a3640b1

Browse files
committed
Try true not 'true'
1 parent f2c2214 commit a3640b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/common.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ jobs:
4747
run: echo "run_docs is ${{ inputs.run_docs }}"
4848

4949
- name: Move diagram to doc space
50-
if: ${{ inputs.run_docs == 'true' }}
50+
if: ${{ inputs.run_docs == true }}
5151
run: |
5252
mkdir -p doc-uml
5353
mv *.svg doc-uml
5454
mv *.puml doc-uml
5555
5656
- name: Push docs to current branch
57-
if: inputs.run_docs == 'true'
57+
if: ${{ inputs.run_docs == true }}
5858
env:
5959
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6060
run: |

0 commit comments

Comments
 (0)