Bump core from 3ed9b43
to c7dc05a
(#1837)
#63
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: Deploy TypeSpec Azure Website to github pages | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: {} | |
# Deploy on push to main | |
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 | |
with: | |
submodules: recursive | |
- uses: ./.github/actions/setup | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install browsers | |
run: pnpm exec playwright install | |
working-directory: packages/typespec-azure-playground-website | |
- name: Build | |
run: pnpm --filter "@azure-tools/typespec-azure-website..." --filter '!@typespec/website' run build | |
env: | |
TYPESPEC_WEBSITE_BASE_PATH: "/typespec-azure/" | |
NODE_OPTIONS: "--max_old_space_size=4096" | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: ./website/dist | |
# 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 |