28 lines
622 B
YAML
28 lines
622 B
YAML
|
name: 'Release'
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [master]
|
||
|
|
||
|
jobs:
|
||
|
release:
|
||
|
runs-on: 'ubuntu-latest'
|
||
|
steps:
|
||
|
- uses: 'actions/checkout@v2.3.5'
|
||
|
|
||
|
- name: 'Use Node.js'
|
||
|
uses: 'actions/setup-node@v2.4.1'
|
||
|
with:
|
||
|
node-version: '16.x'
|
||
|
cache: 'npm'
|
||
|
|
||
|
- name: 'Install'
|
||
|
run: 'npm install'
|
||
|
|
||
|
- name: 'Deploy to Vercel'
|
||
|
run: 'npm run deploy -- --token="${VERCEL_TOKEN}" --prod'
|
||
|
env:
|
||
|
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
|
||
|
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
|
||
|
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
|