We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c65579f commit 3399a75Copy full SHA for 3399a75
.github/actions/conditional/action.yml
.github/actions/documentation/action.yml
@@ -21,14 +21,9 @@ runs:
21
else
22
exec mdbook build --dest-dir "./book/${d}"
23
fi
24
- - uses: ./.github/actions/conditional
+ - if: ${{ inputs.publish == 'true' }}
25
+ uses: peaceiris/[email protected]
26
with:
- if: ${{ inputs.publish }}
27
- step: |
28
- - uses: peaceiris/actions-gh-pages@v3
29
- with:
30
- user_name: 'github-actions[bot]'
31
- user_email: 'github-actions[bot]@users.noreply.github.com'
32
- github_token: ${{ inputs.token }}
33
- publish_dir: ./book
34
- keep_files: true
+ github_token: ${{ inputs.token }}
+ publish_dir: ./book
+ keep_files: true
0 commit comments