Updated deploy.yml #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy API Documentation | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build docs | |
run: ./make.sh | |
- name: Check if index.html exists | |
run: | | |
if [ ! -f index.html ]; then | |
echo "index.html does not exist!" | |
exit 1 | |
fi | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: . | |
force_orphan: true | |
exclude_assets: '.github,openapi,redocly.yaml,LICENSE,README.md,make.sh' |