Skip to content

Fix: Apply @minItems and @maxItems on model array (#2170) #336

Fix: Apply @minItems and @maxItems on model array (#2170)

Fix: Apply @minItems and @maxItems on model array (#2170) #336

name: Deploy TypeSpec Website to github pages
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches:
- main
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js node 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: node common/scripts/install-run-rush.js update
- name: Build
run: node common/scripts/install-run-rush.js build --to @typespec/website
env:
TYPESPEC_WEBSITE_BASE_PATH: "/typespec/"
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./packages/website/build
# Deployment job
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@v1