Skip to content

Commit 94e5af7

Browse files
ci: change if syntax
1 parent 89f6ff4 commit 94e5af7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/book.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ jobs:
8484
working-directory: book
8585

8686
- name: Combine Book Outputs
87-
if: ${{ inputs.combine == 'true' }}
87+
if: ${{ inputs.combine }}
8888
run: mdbook-trunk combine
8989
working-directory: book
9090

9191
- name: Copy Book Output
92-
if: ${{ inputs.combine == 'false' }}
92+
if: ! ${{ inputs.combine }}
9393
run: rm -rf dist && cp -r book dist
9494
working-directory: book
9595

0 commit comments

Comments
 (0)