old-portfolio-site/.gitea/unused/vercel-production.yml

22 lines
738 B
YAML
Raw Permalink Normal View History

2024-04-29 16:33:39 +00:00
name: Vercel Production Deployment
2024-04-29 03:59:11 +00:00
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
2024-04-29 16:33:39 +00:00
branches:
2024-04-29 03:59:11 +00:00
- main
jobs:
2024-04-29 16:33:39 +00:00
Deploy-Production:
2024-04-29 03:59:11 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
2024-04-29 16:33:39 +00:00
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
2024-04-29 03:59:11 +00:00
- name: Build Project Artifacts
2024-04-29 16:33:39 +00:00
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
2024-04-29 03:59:11 +00:00
- name: Deploy Project Artifacts to Vercel
2024-04-29 16:33:39 +00:00
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}