{"id":25491499,"url":"https://github.com/federicogarcia/simple-vercel-deploy-action","last_synced_at":"2026-04-15T15:40:06.956Z","repository":{"id":278110199,"uuid":"934551580","full_name":"FedericoGarcia/simple-vercel-deploy-action","owner":"FedericoGarcia","description":"Deploy a project in Vercel easily","archived":false,"fork":false,"pushed_at":"2025-02-18T03:18:46.000Z","size":0,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-18T03:31:27.207Z","etag":null,"topics":["action","actions","automation","continuous-delivery","continuous-deployment","deploy","deployment","github-actions","nextjs","vercel","vercel-deployment"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/simple-vercel-deploy-action","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FedericoGarcia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-18T02:51:45.000Z","updated_at":"2025-02-18T03:21:28.000Z","dependencies_parsed_at":"2025-02-18T03:41:28.982Z","dependency_job_id":null,"html_url":"https://github.com/FedericoGarcia/simple-vercel-deploy-action","commit_stats":null,"previous_names":["federicogarcia/simple-vercel-deploy-action"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FedericoGarcia%2Fsimple-vercel-deploy-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FedericoGarcia%2Fsimple-vercel-deploy-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FedericoGarcia%2Fsimple-vercel-deploy-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FedericoGarcia%2Fsimple-vercel-deploy-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FedericoGarcia","download_url":"https://codeload.github.com/FedericoGarcia/simple-vercel-deploy-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239558934,"owners_count":19658934,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["action","actions","automation","continuous-delivery","continuous-deployment","deploy","deployment","github-actions","nextjs","vercel","vercel-deployment"],"created_at":"2025-02-18T22:17:45.033Z","updated_at":"2026-04-15T15:40:06.914Z","avatar_url":"https://github.com/FedericoGarcia.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple Vercel deploy action\n\n![GitHub Release](https://img.shields.io/github/v/release/FedericoGarcia/simple-vercel-deploy-action)\n![GitHub License](https://img.shields.io/github/license/FedericoGarcia/simple-vercel-deploy-action)\n\nThis action allows you to deploy your project to Vercel with minimal configuration.\n\n## Inputs\n\n### `vercel_team_id`\n\n**Required** | The Vercel Organization/Team ID.\n\nMore info:\n[https://vercel.com/docs/accounts/create-a-team#find-your-team-id](https://vercel.com/docs/accounts/create-a-team#find-your-team-id)\n\n### `vercel_project_id`\n\n**Required** | The Vercel Project ID.\n\nMore info:\n[https://vercel.com/docs/projects/project-configuration/general-settings#project-id](https://vercel.com/docs/projects/project-configuration/general-settings#project-id)\n\n### `vercel_account_token`\n\n**Required** | The Vercel Account Token.\n\nMore info:\n[https://vercel.com/guides/how-do-i-use-a-vercel-api-access-token#creating-an-access-token](https://vercel.com/guides/how-do-i-use-a-vercel-api-access-token#creating-an-access-token)\n\n## Examples\n\n### Basic usage\n\n#### `.github/workflows/vercel-deploy.yml`\n\n```yaml\nname: Vercel deploy\n\non:\n  push:\n    branches:\n      - main\n\njobs:\n  deploy:\n    name: Deploy\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n      - name: Vercel deploy\n        uses: FedericoGarcia/simple-vercel-deploy-action@v1\n        with:\n          vercel_team_id: ${{ vars.VERCEL_TEAM_ID }}\n          vercel_project_id: ${{ vars.VERCEL_PROJECT_ID }}\n          vercel_account_token: ${{ secrets.VERCEL_ACCOUNT_TOKEN }}\n```\n\n### Multiple environments (projects)\n\n#### `.github/workflows/vercel-deploy-development.yml`\n\n```yaml\nname: Vercel deploy development\n\non:\n  push:\n    branches:\n      - development\n\njobs:\n  deploy:\n    name: Deploy\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n      - name: Vercel deploy\n        uses: FedericoGarcia/simple-vercel-deploy-action@v1\n        with:\n          vercel_team_id: ${{ vars.VERCEL_TEAM_ID }}\n          vercel_project_id: ${{ vars.VERCEL_PROJECT_ID_DEVELOPMENT }}\n          vercel_account_token: ${{ secrets.VERCEL_ACCOUNT_TOKEN }}\n```\n\n#### `.github/workflows/vercel-deploy-production.yml`\n\n```yaml\nname: Vercel deploy production\n\non:\n  push:\n    branches:\n      - production\n\njobs:\n  deploy:\n    name: Deploy\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@v4\n      - name: Vercel deploy\n        uses: FedericoGarcia/simple-vercel-deploy-action@v1\n        with:\n          vercel_team_id: ${{ vars.VERCEL_TEAM_ID }}\n          vercel_project_id: ${{ vars.VERCEL_PROJECT_ID_PRODUCTION }}\n          vercel_account_token: ${{ secrets.VERCEL_ACCOUNT_TOKEN }}\n```\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffedericogarcia%2Fsimple-vercel-deploy-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffedericogarcia%2Fsimple-vercel-deploy-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffedericogarcia%2Fsimple-vercel-deploy-action/lists"}