From bfe25d9755598bd40d92c0074082bbaf626dfa55 Mon Sep 17 00:00:00 2001 From: sct Date: Tue, 2 Feb 2021 01:16:05 +0000 Subject: [PATCH] docs(api): deploy api docs to github pages [skip ci] --- .github/workflows/deploy_docs.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/deploy_docs.yml diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml new file mode 100644 index 000000000..b0aad89da --- /dev/null +++ b/.github/workflows/deploy_docs.yml @@ -0,0 +1,22 @@ +name: Deploy API Docs + +on: + push: + branches: + - develop + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Generate Swagger UI + uses: Legion2/swagger-ui-action@v1 + with: + output: swagger-ui + spec-file: overseerr-api.yml + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: swagger-ui