fix typo #53
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
# This workflow will buid the GQL API documentation on main | |
name: Deploy GQL API Docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-gql-docs: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install spectaql | |
run: yarn global add spectaql | |
- name: Build site with spectaql | |
run: npx spectaql .spectaql-config.yml | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: public |