Skip to content

Commit 2d3b759

Browse files
committed
Fix asset link inserting
1 parent c82eae4 commit 2d3b759

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,11 @@ jobs:
5353
echo "${{ matrix.apps.env }}" >> .env
5454
- name: Add asset links if available
5555
if: matrix.apps.asset_links
56+
env:
57+
ASSET_LINKS: ${{ matrix.apps.asset_links }}
5658
run: |
5759
mkdir -p public/.well-known
58-
echo "${{ matrix.apps.asset_links }}" >> public/.well-known/assetlinks.json
60+
echo "$ASSET_LINKS" >> public/.well-known/assetlinks.json
5961
- name: Install dependencies
6062
run: pnpm install
6163
- name: Build

0 commit comments

Comments
 (0)