Updated deploy.yml #6
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: | | |
echo "Getting started" | |
# Bundle docs into zero-dependency HTML file | |
npx @redocly/cli build-docs openapi/openapi.yaml -o index.html | |
- name: Check if index.html exists | |
run: | | |
if [ ! -f index.html ]; then | |
echo "index.html does not exist!" | |
exit 1 | |
fi | |
- name: Add favicon | |
run: | | |
sed -i '' '8i\ | |
<link rel="icon" type="image/png" href="docs/favicon.png"/>' index.html | |
- 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' |