Skip to content

Commit

Permalink
Merge pull request #1 from chiraag918/development
Browse files Browse the repository at this point in the history
DEV to PROD Deployment V1
  • Loading branch information
chiraag918 committed Aug 22, 2023
2 parents 8d7abcc + 2fe4e34 commit 8d72a09
Show file tree
Hide file tree
Showing 25 changed files with 18,198 additions and 17,811 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/vercel-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Vercel Production Deployment
env:
VERCEL_ORG_ID: ${{ secrets.ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.PROJECT_ID }}
on:
push:
branches:
- main
jobs:
Deploy-Production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
outputs:
preview-url: "https://codepen-clone-git-main-chiraag918.vercel.app/"
23 changes: 23 additions & 0 deletions PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
## Pull Request

**Description**

Briefly describe the purpose and scope of this pull request.

**Changes Made**

Describe the changes you made in this pull request.

**Related Issues**

Link to any related GitHub issues or Jira tickets.

**Screenshots**

Add screenshots of the changes.

**Checklist**

- [ ] Tests have been added or updated.
- [ ] Documentation has been updated.
- [ ] Code follows the project's coding style.
Loading

0 comments on commit 8d72a09

Please sign in to comment.