experimental: fuzzy search tokens #3748
Workflow file for this run
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 Deploy Staging | |
on: | |
push: | |
# cancel in-progress runs on new commits to same PR (gitub.event.number) | |
concurrency: | |
group: vercel-deploy-${{ github.workflow }}-${{ github.event.number || github.sha }} | |
cancel-in-progress: true | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
statuses: write # This is required for the GitHub Script createCommitStatus to work | |
deployments: write | |
jobs: | |
deployment: | |
# Execute development and staging on staging branches | |
# Execute only development on all other branches | |
strategy: | |
matrix: | |
environment: | |
- staging | |
- development | |
is-staging: | |
- ${{ endsWith(github.ref_name, '.staging') }} | |
exclude: | |
- environment: staging | |
is-staging: false | |
environment: | |
name: ${{ matrix.environment }} | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha || github.sha }} # HEAD commit instead of merge commit | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- uses: ./.github/actions/vercel | |
id: vercel | |
name: Deploy to Vercel | |
with: | |
vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} | |
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} | |
ref-name: ${{ github.ref_name }} | |
sha: ${{ github.sha }} | |
environment: ${{ matrix.environment }} | |
- name: Debug Vercel Outputs | |
run: | | |
echo "domain=${{ steps.vercel.outputs.domain }}" | |
echo "inspect-url=${{ steps.vercel.outputs.inspect-url }}" | |
echo "alias=${{ steps.vercel.outputs.alias }}" | |
- uses: ./.github/actions/add-status | |
with: | |
title: "⏰ [${{ matrix.environment }}] Vercel Inspection" | |
description: "[${{ matrix.environment }}] Vercel logs" | |
url: "${{ steps.vercel.outputs.inspect-url }}" | |
- uses: ./.github/actions/add-status | |
with: | |
title: "⭐ [${{ matrix.environment }}] Apps Webstudio URL" | |
description: "[${{ matrix.environment }}] Site url" | |
url: "https://${{ steps.vercel.outputs.alias }}.${{ matrix.environment }}.webstudio.is" | |
outputs: | |
builder-url: "https://${{ steps.vercel.outputs.alias }}.${{ matrix.environment }}.webstudio.is" | |
builder-host: "${{ steps.vercel.outputs.alias }}.${{ matrix.environment }}.webstudio.is" | |
fixtures-test: | |
needs: deployment | |
uses: ./.github/workflows/fixtures-test.yml | |
with: | |
builder-url: ${{ needs.deployment.outputs.builder-url }} | |
builder-host: ${{ needs.deployment.outputs.builder-host }} | |
delete-github-deployments: | |
needs: fixtures-test | |
uses: ./.github/workflows/delete-github-deployments.yml | |
with: | |
ref: ${{ github.ref_name }} |