Skip to content

Commit

Permalink
add workflow for production
Browse files Browse the repository at this point in the history
  • Loading branch information
waalbert committed Apr 17, 2024
1 parent 9a869ea commit b23160c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Deploy Production

on:
workflow_run:
workflows:
- Run Checks
types:
- completed
branches:
- main

permissions:
contents: read
pull-requests: write

jobs:
Site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: amondnet/vercel-action@v25
with:
vercel-version: 32.6.1
github-comment: false
vercel-args: "--prod"
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ vars.VERCEL_ORG_ID}}
vercel-project-id: ${{ vars.VERCEL_PROJECT_ID_SITE}}

0 comments on commit b23160c

Please sign in to comment.