Fix fallback condition
This commit is contained in:
parent
582c12721f
commit
5211fd2a56
1 changed files with 1 additions and 1 deletions
2
.github/workflows/build_docs.yml
vendored
2
.github/workflows/build_docs.yml
vendored
|
@ -133,7 +133,7 @@ jobs:
|
|||
run: $HEXDOC --lang "${{ matrix.lang }}" -o _site --clean --is-release "${{ needs.build.outputs.release }}"
|
||||
|
||||
- name: Generate web book with missing translations
|
||||
if: failure()
|
||||
if: steps.gen-normal.outcome == 'failure'
|
||||
run: $HEXDOC --lang "${{ matrix.lang }}" -o _site --clean --is-release "${{ needs.build.outputs.release }}" --allow-missing
|
||||
|
||||
- name: Upload temporary Pages artifact
|
||||
|
|
Loading…
Reference in a new issue