feat(website): add host-aware skills feature section #15
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: Deploy Website to Vercel | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'website/**' | |
| - '.github/workflows/deploy-website.yml' | |
| pull_request: | |
| paths: | |
| - 'website/**' | |
| - '.github/workflows/deploy-website.yml' | |
| workflow_dispatch: | |
| concurrency: | |
| group: deploy-website-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| VERCEL_ORG_ID: team_Twwa0KDaGtEybSu6BXtGJZoD | |
| VERCEL_PROJECT_ID: prj_0B3eVoAJ5vAKY5yL8CH8cJl8JULp | |
| jobs: | |
| deploy: | |
| name: Deploy (${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && 'production' || 'preview' }}) | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: website | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| cache-dependency-path: website/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Vercel CLI | |
| run: npm install --global vercel@latest | |
| - name: Set deployment environment | |
| id: env | |
| run: | | |
| if [ "${{ github.event_name }}" = "push" ] && [ "${{ github.ref }}" = "refs/heads/main" ]; then | |
| echo "target=production" >> "$GITHUB_OUTPUT" | |
| echo "prod_flag=--prod" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "target=preview" >> "$GITHUB_OUTPUT" | |
| echo "prod_flag=" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: Pull Vercel environment | |
| run: vercel pull --yes --environment=${{ steps.env.outputs.target }} --token=${{ secrets.VERCEL_TOKEN }} | |
| - name: Build with Vercel | |
| run: vercel build ${{ steps.env.outputs.prod_flag }} --token=${{ secrets.VERCEL_TOKEN }} | |
| - name: Deploy to Vercel | |
| id: deploy | |
| run: | | |
| url=$(vercel deploy --prebuilt ${{ steps.env.outputs.prod_flag }} --token=${{ secrets.VERCEL_TOKEN }}) | |
| echo "url=$url" >> "$GITHUB_OUTPUT" | |
| echo "Deployed to: $url" >> "$GITHUB_STEP_SUMMARY" |