-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (29 loc) · 1.01 KB
/
deploy-pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Using this to deploy instead of Vercel's GitHub integration because the
# actual integration requires a paid Vercel account.
name: Vercel PR Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
pull_request:
jobs:
pr-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "npm"
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --token=${{ secrets.VERCEL_TOKEN }} > deployment_output.txt
- name: Read deployment output
id: deployment
run: echo "output=$(cat deployment_output.txt)" >> $GITHUB_OUTPUT
- name: Comment Deployment Output
uses: thollander/actions-comment-pull-request@v2
with:
message: |
${{ steps.deployment.outputs.output }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}