Skip to content

Commit d611275

Browse files
committed
Align collab relay URL action input
1 parent d27b2a9 commit d611275

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/vercel/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ inputs:
2020
environment:
2121
description: "Sha"
2222
required: true
23-
public-collab-relay-url:
23+
PUBLIC_COLLAB_RELAY_URL:
2424
description: "Public collaboration relay URL injected into the builder bundle"
2525
required: false
2626
default: ""
@@ -79,7 +79,7 @@ runs:
7979
run: |
8080
export GITHUB_SHA=${{ inputs.sha }}
8181
export GITHUB_REF_NAME=${{ inputs.ref-name }}
82-
export PUBLIC_COLLAB_RELAY_URL=${{ inputs.public-collab-relay-url }}
82+
export PUBLIC_COLLAB_RELAY_URL=${{ inputs.PUBLIC_COLLAB_RELAY_URL }}
8383
8484
if [ "${{ inputs.environment }}" = "production" ]; then
8585
pnpx vercel build --prod

.github/workflows/vercel-deploy-staging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
ref-name: ${{ github.event_name == 'pull_request_target' && format('pr-{0}', github.event.pull_request.number) || github.ref_name }}
8787
sha: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || github.sha }}
8888
environment: ${{ matrix.environment }}
89-
public-collab-relay-url: ${{ vars.PUBLIC_COLLAB_RELAY_URL }}
89+
PUBLIC_COLLAB_RELAY_URL: ${{ vars.PUBLIC_COLLAB_RELAY_URL }}
9090

9191
- uses: ./.github/actions/vercel
9292
if: matrix.environment == 'staging'
@@ -99,7 +99,7 @@ jobs:
9999
ref-name: ${{ github.ref_name }}
100100
sha: ${{ github.sha }}
101101
environment: "production"
102-
public-collab-relay-url: ${{ vars.PUBLIC_COLLAB_RELAY_URL }}
102+
PUBLIC_COLLAB_RELAY_URL: ${{ vars.PUBLIC_COLLAB_RELAY_URL }}
103103

104104
- name: Debug Vercel Outputs
105105
run: |

0 commit comments

Comments
 (0)