Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Merge pull request #4 from promptengineers-ai/development #3

Merge pull request #4 from promptengineers-ai/development

Merge pull request #4 from promptengineers-ai/development #3

Workflow file for this run

on:
push:
branches:
- master # or the name of your default branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # or your preferred Node.js version
- name: Install Vercel CLI
run: npm install -g vercel
- name: Deploy to Vercel
run: vercel . --token ${{ secrets.VERCEL_TOKEN }} --confirm # You might need the --confirm flag if you haven't set up the project yet
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}