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:
|
2024-01-04 16:00:18 +03:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
|
2023-12-13 01:31:20 +03:00
|
|
|
with:
|
2023-12-13 01:47:28 +03:00
|
|
|
submodules: 'true'
|
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 }}
|