Skip to content

Commit 62f8e37

Browse files
committed
parse output correctly
1 parent 2a91c72 commit 62f8e37

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/deploy-website.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,12 @@ jobs:
5151
run: |
5252
cd tests
5353
python -m util vercel | {
54-
read vercel_token
55-
read org_id
56-
read project_id
54+
read vercel_token_val
55+
read org_id_val
56+
read project_id_val
57+
echo "vercel_token=$vercel_token_val" >> $GITHUB_OUTPUT
58+
echo "org_id=$org_id_val" >> $GITHUB_OUTPUT
59+
echo "project_id=$project_id_val" >> $GITHUB_OUTPUT
5760
} >/dev/null 2>/dev/null
5861
cd ..
5962

0 commit comments

Comments
 (0)