Skip to content

Commit 2a91c72

Browse files
committed
fix output
1 parent ab8b824 commit 2a91c72

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/deploy-website.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
pip install cryptography scratchattach
4646
4747
- name: Get vercel auth
48+
id: generate_vars
4849
env:
4950
FERNET_KEY: ${{ secrets.FERNET_KEY }}
5051
run: |
@@ -64,8 +65,8 @@ jobs:
6465
- uses: nexterias/actions-vercel@v1
6566
id: vercel
6667
with:
67-
token: $vercel_token
68-
org-id: $org_id
69-
project-id: $project_id
68+
token: ${{ steps.generate_vars.outputs.vercel_token }}
69+
org-id: ${{ steps.generate_vars.outputs.org_id }}
70+
project-id: ${{ steps.generate_vars.outputs.project_id }}
7071
production: true
7172
prebuilt: true

0 commit comments

Comments
 (0)