Skip to content

Commit

Permalink
Try true not 'true'
Browse files Browse the repository at this point in the history
  • Loading branch information
fuhrmanator committed Jul 30, 2024
1 parent f2c2214 commit a3640b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ jobs:
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
mv *.puml doc-uml
- name: Push docs to current branch
if: inputs.run_docs == 'true'
if: ${{ inputs.run_docs == true }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand Down

0 comments on commit a3640b1

Please sign in to comment.