🔧 Fix tag commit retrieval by adding a separator to the git command #2643
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
# This workflow deploys some `apps/*` apps. | |
# For the `apps/erd-sample` and `apps/erd-web` app, see `.github/workflows/vercel-deploy-erd.yml`. | |
name: Vercel Deployment | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
setup-deployment: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: read | |
outputs: | |
environment: ${{ steps.environment.outputs.environment }} | |
has-changes: ${{ steps.changes.outputs.src }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: tj-actions/branch-names@v7.0.7 | |
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 | |
with: | |
filters: | | |
src: | |
- './.github/workflows/vercel-deploy.yml' | |
- './frontend/apps/docs/**' | |
- './pnpm-lock.yaml' | |
deploy: | |
name: Deploy | |
needs: [setup-deployment] | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
if: ${{ needs.setup-deployment.outputs.has-changes == 'true' }} | |
strategy: | |
matrix: | |
apps: | |
- name: docs | |
vercel-project-id-key: VERCEL_PROJECT_ID_DOCS | |
environment: | |
name: "${{ needs.setup-deployment.outputs.environment }} - ${{ matrix.apps.name }}" | |
url: ${{ steps.deployment.outputs.deployment-url }} | |
permissions: | |
contents: read | |
deployments: write | |
outputs: | |
app-name: ${{ matrix.apps.name }} | |
url: ${{ steps.deployment.outputs.deployment-url }} | |
env: | |
VERCEL_ORG_ID: ${{ vars.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ vars[matrix.apps.vercel-project-id-key] }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/pnpm-setup | |
- name: Install Vercel CLI | |
run: pnpm add --global vercel@latest | |
- name: Pull Vercel Enviroment Infomation | |
run: vercel pull --yes --environment=${{ needs.setup-deployment.outputs.environment }} --token=${{ secrets.VERCEL_TOKEN }} | |
- name: Build Project Artifacts | |
run: vercel build ${{ needs.setup-deployment.outputs.environment == 'production' && '--prod' || '' }} | |
- name: Deploy Project Artifacts to Vercel | |
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 |