Improve code block formatting in README.md (#1381) #249
This file contains hidden or 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: Prebuild Vercel Tutor | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| inputs: | |
| jobs: | |
| clone-build-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GH_TOKEN_PULL_REQUESTS }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 'lts/*' | |
| - run: | | |
| node --version | |
| npm --version | |
| - run: | | |
| npm install -g vercel@latest | |
| vc --version | |
| - working-directory: ./vercel-tutor | |
| run: | | |
| npm install -g pnpm@9.15.3 | |
| pnpm install | |
| env: | |
| NPM_CONFIG_LOGLEVEL: http | |
| - working-directory: ./vercel-tutor | |
| run: | | |
| vc build --debug --token $VERCEL_TOKEN --yes --prod | |
| env: | |
| VERCEL_PROJECT_ID: prj_MOlShEFPtl2m22AhKxjXZYUbnsRX | |
| VERCEL_TOKEN: ${{ secrets.VERCEL_EXAMPLES_TOKEN }} | |
| VERCEL_ORG_ID: ${{ secrets.VERCEL_EXAMPLES_ORG_ID }} | |
| - working-directory: ./vercel-tutor | |
| run: | | |
| vc deploy --debug --token $VERCEL_TOKEN --yes --prod --prebuilt --archive=tgz | |
| env: | |
| VERCEL_PROJECT_ID: prj_MOlShEFPtl2m22AhKxjXZYUbnsRX | |
| VERCEL_TOKEN: ${{ secrets.VERCEL_EXAMPLES_TOKEN }} | |
| VERCEL_ORG_ID: ${{ secrets.VERCEL_EXAMPLES_ORG_ID }} |