Release 0.11.1 (#89) #125
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: Publish Docs Preview | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| jobs: | |
| publish-preview-docs: | |
| runs-on: macos-14 | |
| timeout-minutes: 30 | |
| env: | |
| VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
| VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
| steps: | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18.x | |
| - run: sudo xcode-select --switch /Applications/Xcode_15.1.app | |
| - uses: actions/checkout@v4 | |
| - name: Install Vercel CLI | |
| run: npm install -g vercel | |
| - name: Pull Build Configuration | |
| run: vercel pull --token ${{ secrets.VERCEL_TOKEN }} | |
| - name: Build Vercel Package | |
| run: vercel build | |
| - name: Deploy Preview | |
| run: vercel deploy --prebuilt --token ${{ secrets.VERCEL_TOKEN }} |