Skip to content

Some large repo updates #7

Some large repo updates

Some large repo updates #7

Workflow file for this run

name: Deploy to Production
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v4
- name: Deploy to Vercel
uses: amondnet/vercel-action@v25
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
vercel-args: '--prod'
- name: Notify Deployment Success
if: success()
uses: 8398a7/action-slack@v3
with:
status: success
text: 'Deployment to production succeeded! 🚀'
webhook_url: ${{ secrets.SLACK_WEBHOOK }}
- name: Notify Deployment Failure
if: failure()
uses: 8398a7/action-slack@v3
with:
status: failure
text: 'Deployment to production failed! ❌'
webhook_url: ${{ secrets.SLACK_WEBHOOK }}