This directory contains GitHub Actions workflow files that have been temporarily disabled. Follow these steps to enable them after pushing your repository to GitHub:
First, push your repository to GitHub.
- Go to Vercel
- Click "Add New" and select "Project"
- Import your GitHub repository
- Configure your project settings and deploy
-
Vercel Token:
- Go to https://vercel.com/account/tokens
- Create a new token and copy it
-
Org ID and Project ID:
- Install Vercel CLI:
npm i -g vercel
orbun install -g vercel
- Run
vercel link
in your project directory to link to your Vercel project - Check the
.vercel/project.json
file that gets created for your Project ID - Run
vercel whoami
to get your Org ID (shown as username or team name)
- Install Vercel CLI:
- Go to your GitHub repository → Settings → Secrets and variables → Actions
- Add the following secrets:
VERCEL_TOKEN
: Your Vercel API tokenVERCEL_ORG_ID
: Your Vercel organization IDVERCEL_PROJECT_ID
: Your Vercel project ID
- Uncomment the
on:
section in each workflow file:.github/workflows/ci.yml
.github/workflows/deploy.yml
.github/workflows/preview.yml
- Commit and push the changes
Your GitHub Actions workflows will now be active!