mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
540 B
21 lines
540 B
4 years ago
|
name: Deploy to Production
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
vercel-deployment:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: aulneau/vercel-action@v19.0.2+3
|
||
|
id: vercel_prod_deployment
|
||
|
with:
|
||
|
vercel-token: ${{ secrets.VERCEL_TOKEN }}
|
||
|
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
|
||
|
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
|
||
|
scope: ${{ secrets.VERCEL_SCOPE }}
|
||
|
vercel-args: '--prod'
|
||
|
github-comment: false
|