Skip to content

Commit

Permalink
cd: cd-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
leifermendez committed Apr 2, 2024
1 parent bffb4c3 commit bd9a500
Showing 1 changed file with 26 additions and 32 deletions.
58 changes: 26 additions & 32 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,43 +1,37 @@
name: Vercel Preview Deployment

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches-ignore:
- main

jobs:
Deploy-Preview:
runs-on: ubuntu-latest
install:
runs-on: ubuntu-latest

steps:

- name: Checkout
uses: actions/checkout@v4

steps:
- uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
cache: 'pnpm'
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install pnpm
run: |
npm install -g pnpm
- uses: pnpm/action-setup@v3
with:
version: 8

- name: Install Dependencies
run: |
pnpm install
- name: Install Vercel CLI
run: |
npm install -g vercel
- name: Install Vercel CLI
run: pnpm install --global vercel@latest

- name: Pull Vercel Environment Information
run: |
vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: |
vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}

- name: Deploy Project Artifacts to Vercel
run: |
vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
- 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 }}

0 comments on commit bd9a500

Please sign in to comment.