Skip to content

Commit

Permalink
[build] 개발측 자동배포 워크플로 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
lybell-art committed Jul 23, 2024
1 parent 13972f5 commit 56735cf
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/deploy_preview.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: deploy preview
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches:
- "dev"
- "feature/3-ssg"
jobs:
deploy-preview:
runs-on: ubuntu-latest
steps:
- name: pull code to computer
uses: actions/checkout@v4
- name: install node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: install vercel cli
run: npm install -g vercel
- name: deploy to vercel as preview
run: |
vercel pull --yes -token=${{ secrets.VERCEL_TOKEN }}
vercel build --token=${{ secrets.VERCEL_TOKEN }}
vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}

0 comments on commit 56735cf

Please sign in to comment.