Vercel deploy erd sample [PoC] has-changes
branching
#408
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: Vercel Deployment | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
setup-deployment: | |
runs-on: ubuntu-latest | |
outputs: | |
environment: ${{ steps.environment.outputs.environment }} | |
has-changes-docs: ${{ steps.changes-docs.outputs.src }} | |
has-changes-erd-sample: ${{ steps.changes-erd-sample.outputs.src }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: tj-actions/[email protected] | |
id: branch-name | |
- name: Detect Environment Changes | |
id: environment | |
run: | | |
echo "environment=${{ steps.branch-name.outputs.current_branch == 'main' && 'production' || 'preview' }}" >> $GITHUB_OUTPUT | |
- uses: dorny/paths-filter@v3 | |
id: changes-docs | |
with: | |
filters: | | |
src: | |
- './.github/workflows/vercel-deploy.yml' | |
- './frontend/apps/docs/**' | |
- uses: dorny/paths-filter@v3 | |
id: changes-erd-sample | |
with: | |
filters: | | |
src: | |
- './.github/workflows/vercel-deploy.yml' | |
- './frontend/apps/erd-sample/**' | |
- './frontend/packages/cli/**' | |
- './frontend/packages/db-structure/**' | |
- './frontend/packages/erd-core/**' | |
- './frontend/packages/ui/**' | |
deploy: | |
name: Deploy | |
needs: [setup-deployment] | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
if: ${{ needs.setup-deployment.outputs.has-changes-docs == 'true' || needs.setup-deployment.outputs.has-changes-erd-sample == 'true' }} | |
strategy: | |
matrix: | |
apps: | |
- name: docs | |
execute: false | |
prepare: "true" | |
vercel-project-id-key: VERCEL_PROJECT_ID_DOCS | |
- name: erd-sample | |
execute: false | |
prepare: "pnpm build" | |
vercel-project-id-key: VERCEL_PROJECT_ID_ERD_SAMPLE | |
environment: | |
name: "${{ needs.setup-deployment.outputs.environment }} - ${{ matrix.apps.name }}" | |
url: ${{ steps.deployment.outputs.deployment-url }} | |
outputs: | |
app-name: ${{ matrix.apps.name }} | |
url: ${{ steps.deployment.outputs.deployment-url }} | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets[matrix.apps.vercel-project-id-key] }} | |
steps: | |
- uses: actions/checkout@v4 | |
if: ${{ matrix.apps.execute }} | |
- uses: ./.github/actions/pnpm-setup | |
if: ${{ matrix.apps.execute }} | |
with: | |
working-directory: frontend | |
- name: Install Vercel CLI | |
if: ${{ matrix.apps.execute }} | |
run: pnpm add --global vercel@latest | |
- name: Pull Vercel Enviroment Infomation | |
if: ${{ matrix.apps.execute }} | |
run: vercel pull --yes --environment=${{ needs.setup-deployment.outputs.environment }} --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Run prepare command | |
if: ${{ matrix.apps.execute }} | |
run: ${{ matrix.apps.prepare }} | |
working-directory: frontend | |
- name: Build Project Artifacts | |
if: ${{ matrix.apps.execute }} | |
run: vercel build --token=${{ secrets.VERCEL_TOKEN }} ${{ needs.setup-deployment.outputs.environment == 'production' && '--prod' || '' }} | |
- name: Deploy Project Artifacts to Vercel | |
if: ${{ matrix.apps.execute }} | |
run: | | |
vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} ${{ needs.setup-deployment.outputs.environment == 'production' && '--prod' || '' }} > deployment-url.txt | |
echo "deployment-url=$(cat deployment-url.txt)" >> $GITHUB_OUTPUT | |
id: deployment |