2023-06-29 10:55:06 +03:00
|
|
|
name: Preview Deployment
|
|
|
|
env:
|
|
|
|
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
|
|
|
|
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
|
|
Deploy-Preview:
|
2023-06-29 11:07:37 +03:00
|
|
|
environment: production
|
2023-06-29 10:55:06 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-12-13 01:31:20 +03:00
|
|
|
with:
|
2023-12-13 01:42:47 +03:00
|
|
|
submodules: recursive
|
2023-06-29 10:55:06 +03:00
|
|
|
- name: Install Vercel CLI
|
|
|
|
run: npm install --global vercel@latest
|
|
|
|
- name: Pull Vercel Environment Information
|
2023-06-29 11:59:55 +03:00
|
|
|
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
|
2023-06-29 10:55:06 +03:00
|
|
|
- name: Build Project Artifacts
|
|
|
|
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
|
|
|
|
- name: Deploy Project Artifacts to Vercel
|
|
|
|
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
|