refactor(pay): use app router in pay (#3992) #2616
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: "Generate GraphQL Docs" | |
concurrency: ${{ github.workflow }} | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v4 | |
- name: Run the Magic Nix Cache | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- uses: actions/checkout@v3 | |
with: | |
path: main | |
- uses: actions/checkout@v3 | |
with: | |
ref: docs | |
path: docs | |
- run: nix develop -c pnpm install --frozen-lockfile | |
working-directory: main/core/api | |
- run: nix develop -c ytt -f spectaql/TUTORIAL.md -f spectaql/spectaql-config-template.yml > spectaql-config.yml | |
working-directory: main/core/api | |
- name: Build docs | |
run: nix develop -c pnpm run build-docs | |
working-directory: main/core/api | |
- run: cp main/core/api/public/index.html docs | |
- run: cp main/core/api/public/logo.png docs/images | |
- name: Deploy docs | |
working-directory: docs | |
run: | | |
git config --local user.name 'github-actions[bot]' | |
git config --local user.email 'github-actions[bot]@users.noreply.github.com' | |
git add . | |
git commit -m "Update docs: $GITHUB_SHA" | |
git push |