Skip to content

s/Ever/Every/ (#608) #419

s/Ever/Every/ (#608)

s/Ever/Every/ (#608) #419

Workflow file for this run

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@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install Vercel CLI and pnpm
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run:
vercel pull --yes --environment=production
--token=${{secrets.VERCEL_TOKEN }}
- name: Install dependencies via pnpm
run: pnpm 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 }}