add more to home #what #5
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: Build Book & Deploy to Vercel | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
buildAndDeploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: Install mdBook | |
uses: extractions/setup-crate@15a6086aa9557e81c303ed66da86704d11915cf8 # v1 | |
with: | |
owner: rust-lang | |
name: mdBook | |
- name: Generate static content for the book | |
run: mdbook build | |
- name: Setup Node.js (required to install Vercel CLI) | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
- name: Install Vercel CLI | |
run: npm install --global vercel | |
- name: Pull Vercel environment information | |
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Deploy to Vercel | |
run: vercel book --prod --token=${{ secrets.VERCEL_TOKEN }} |