-
Notifications
You must be signed in to change notification settings - Fork 256
38 lines (38 loc) · 1.38 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Deploy to Production
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
on:
push:
branches: [master, main]
# workflow_run:
# workflows: ["Formatting / Lint"]
# types:
# - completed
# branches: [master, main]
jobs:
deploy-production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Vercel CLI and Yarn
run: npm install --global vercel@latest yarn
- name: Pull Vercel Environment Information
run:
vercel pull --yes --environment=production
--token=${{secrets.VERCEL_TOKEN }}
- name: Install dependencies via yarn
run: yarn install
# todo: if not content files changed, skip uploading
# todo: only upload the changed files
- name: Upload latest content to crowdin
run: npm run crowdin:upload --no-progress
- name: Download latest translations from crowdin
run: npm run crowdin:download --no-progress
- name: Current translation completion status
run: npx crowdin status
- 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 }}