Skip to content

Updated deploy.yml

Updated deploy.yml #5

Workflow file for this run

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: Add favicon
run: |
sed -i '' '8i\
<link rel="icon" type="image/png" href="docs/favicon.png"/>' index.html
- 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'