Skip to content

fix(generators): Remove apollo by default (#30) #47

fix(generators): Remove apollo by default (#30)

fix(generators): Remove apollo by default (#30) #47

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.12.0
- name: Setup Node.js
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
with:
node-version: '18.20.0'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build docs site
run: pnpm nx run docs-docs-site:build
- name: Export docs site
run: pnpm nx run docs-docs-site:export
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/docs-site/out
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4