https://github.com/nexterias/actions-vercel
Deploy to Vercel with GitHub Actions
https://github.com/nexterias/actions-vercel
actions github-actions vercel
Last synced: 8 months ago
JSON representation
Deploy to Vercel with GitHub Actions
- Host: GitHub
- URL: https://github.com/nexterias/actions-vercel
- Owner: nexterias
- License: mit
- Created: 2023-04-16T13:50:06.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-09-30T22:39:38.000Z (9 months ago)
- Last Synced: 2025-10-01T00:23:50.591Z (9 months ago)
- Topics: actions, github-actions, vercel
- Language: TypeScript
- Homepage: https://actions-vercel.nexterias.dev
- Size: 2.69 MB
- Stars: 15
- Watchers: 2
- Forks: 1
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# actions-vercel
[](https://github.com/nexterias/actions-vercel/actions/workflows/ci.yml)
Deploy to Vercel with GitHub Actions
## Usage
```yml
name: Vercel
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
pull_request:
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
statuses: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: nexterias/actions-vercel@v1
with:
token: ${{ secrets.YOUR_VERCEL_TOKEN }}
org-id: ${{ secrets.YOUR_VERCEL_ORG_ID }}
project-id: ${{ secrets.YOUR_VERCEL_PROJECT_ID }}
production: ${{ github.ref == 'refs/heads/main' }}
prebuilt: true # If set to true, build will be performed using GitHub Actions.
```
## Examples
- [nexterias/homepage](https://github.com/nexterias/homepage)