Skip to content

Commit

Permalink
actions to deploy to vercel
Browse files Browse the repository at this point in the history
  • Loading branch information
thedevyashsaini committed Jul 22, 2024
1 parent bb82055 commit d8b6e23
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/vercelMerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Deploy to vercel on merge
on:
push:
branches:
- new
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# To set more environment variables on the build, either use Vercel CLI or this:
# - uses: dkershner6/vercel-set-env-action@v1
# with:
# token: ${{ secrets.VERCEL_TOKEN }}
# projectName: events-app
# envVariableKeys: SOME_VARIABLE
# env:
# SOME_VARIABLE: ${{ secrets.SOME_VARIABLE }}
# TARGET_SOME_VARIABLE: preview,development,production
# TYPE_SSOME_VARIABLE: encrypted
- uses: amondnet/vercel-action@v20
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
vercel-args: '--prod'
vercel-org-id: ${{ secrets.ORG_ID}}
vercel-project-id: ${{ secrets.PROJECT_ID}}
20 changes: 20 additions & 0 deletions .github/workflows/vercelPullRequest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Create vercel preview URL on pull request
on:
pull_request:
branches:
- main
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: amondnet/vercel-action@v20
id: vercel-deploy
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
vercel-org-id: ${{ secrets.ORG_ID}}
vercel-project-id: ${{ secrets.PROJECT_ID}}
- name: preview-url
run: |
echo ${{ steps.vercel-deploy.outputs.preview-url }}

1 comment on commit d8b6e23

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for iiitvcc ready!

✅ Preview
https://iiitvcc-q695rz8e6-iiitv-coding-clubs-projects.vercel.app

Built with commit d8b6e23.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.