Skip to content

Commit 51cec4b

Browse files
committed
ci: add vercel secrets to build release
1 parent c9a2a51 commit 51cec4b

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ on:
1717
required: true
1818
AZURE_STORAGE_CONNECTION_STRING:
1919
required: true
20+
VERCEL_DAFFIO_NEXT_PROJECT_ID:
21+
required: false
22+
VERCEL_DAFFIO_PROJECT_ID:
23+
required: false
24+
VERCEL_TOKEN:
25+
required: false
26+
VERCEL_ORG:
27+
required: false
2028
env:
2129
NX_KEY: ${{ secrets.NX_KEY }}
2230
NG_BUILD_ENV: ${{ github.event_name == 'push' && github.ref_type == 'tag' && 'production' || 'next' }}

.github/workflows/build_release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,8 @@ jobs:
1414
ref: ${{ github.sha }}
1515
secrets:
1616
NX_KEY: ${{ secrets.NX_KEY }}
17-
AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.AZURE_NX_CACHE_READONLY_CONNECTION_STRING }}
17+
AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.AZURE_NX_CACHE_READONLY_CONNECTION_STRING }}
18+
VERCEL_DAFFIO_NEXT_PROJECT_ID: ${{ secrets.VERCEL_DAFFIO_NEXT_PROJECT_ID }}
19+
VERCEL_DAFFIO_PROJECT_ID: ${{ secrets.VERCEL_DAFFIO_PROJECT_ID }}
20+
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
21+
VERCEL_ORG: ${{ secrets.VERCEL_ORG }}

0 commit comments

Comments
 (0)