Skip to content

Commit da702cc

Browse files
authored
chore(ci): remove conditionally based on deployments (#2807)
1 parent 44c682e commit da702cc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: Production Tag Deployment
22
env:
3-
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
4-
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
3+
# secrets is for dependabot compatibility; prefer vars when available
4+
VERCEL_ORG_ID: ${{ vars.VERCEL_ORG_ID != '' && vars.VERCEL_ORG_ID || secrets.VERCEL_ORG_ID }}
5+
VERCEL_PROJECT_ID: ${{ vars.VERCEL_PROJECT_ID != '' && vars.VERCEL_PROJECT_ID || secrets.VERCEL_PROJECT_ID }}
56
on:
67
push:
78
tags:

.github/workflows/regression-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ concurrency:
1313

1414
jobs:
1515
unlighthouse-audit:
16-
if: ${{ contains(fromJson('["Production – catalyst-canary", "Preview – catalyst-canary"]'), github.event.deployment_status.environment) }}
1716
name: Unlighthouse Audit - ${{ matrix.device }}
1817
runs-on: ubuntu-latest
1918
strategy:

0 commit comments

Comments
 (0)