Skip to content

feat: deploy Next.js to GH Pages #3

feat: deploy Next.js to GH Pages

feat: deploy Next.js to GH Pages #3

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Publish Docs
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
LEFTHOOK: 0
CI: true
# 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-release:
name: Build and release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run actions/setup-sdk@local
uses: ./.github/setup-sdk
- name: Get current tag
id: current_tag
shell: bash
run: echo "PKG_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Setup Pages
uses: actions/configure-pages@v5
with:
# Automatically inject basePath in your Next.js configuration file and disable
# server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized).
# You may remove this line if you want to manage the configuration yourself.
static_site_generator: next
- if: ${{ steps.pnpm-cache.outputs.cache-hit != 'true' }}
name: Install and build
run: |
pnpm install --frozen-lockfile --ignore-scripts
moon docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./apps/docs/out
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build

Check failure on line 71 in .github/workflows/publish-docs.yml

View workflow run for this annotation

GitHub Actions / Publish Docs

Invalid workflow file

The workflow is not valid. .github/workflows/publish-docs.yml (Line: 71, Col: 12): Job 'deploy' depends on unknown job 'build'.
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4