Skip to content

Commit

Permalink
Merge pull request #4 from TEAM-ALOM/feature/vercel-deploy
Browse files Browse the repository at this point in the history
chore: vercel 빌드 설정
  • Loading branch information
GHooN99 authored Oct 11, 2024
2 parents a046474 + 780ba8e commit ccb2bac
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/deploy-vercel-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Vercel Production 배포
run-name: Vercel Production 배포 by @${{ github.actor }}
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
workflow_dispatch:

jobs:
Deploy-Production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Vercel CLI
run: npm install --global vercel@latest

- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}

- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}

- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ dist-ssr
*.sw?

*storybook.log
storybook-static
storybook-static
.vercel

0 comments on commit ccb2bac

Please sign in to comment.