ci: separate website deploy #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy website | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 'apps/website/**' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
deploy-website: | |
name: Deploy website | |
runs-on: ubuntu-latest | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
if: github.repository_owner == 'discordjs' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
uses: ./packages/actions/src/pnpmCache | |
- name: Build dependencies | |
run: pnpm run build | |
- name: Pull vercel production environment | |
run: pnpm exec vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Build website Artifacts | |
run: pnpm exec vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Build & deploy website | |
uses: BetaHuhn/deploy-to-vercel-action@643bc80032ba62ca41d1a9aaba7b38b51c2b8646 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
VERCEL_SCOPE: 'discordjs' | |
GITHUB_DEPLOYMENT_ENV: 'Production – discord-js' | |
PRODUCTION: true | |
PREBUILT: true |