We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab8b824 commit 2a91c72Copy full SHA for 2a91c72
.github/workflows/deploy-website.yml
@@ -45,6 +45,7 @@ jobs:
45
pip install cryptography scratchattach
46
47
- name: Get vercel auth
48
+ id: generate_vars
49
env:
50
FERNET_KEY: ${{ secrets.FERNET_KEY }}
51
run: |
@@ -64,8 +65,8 @@ jobs:
64
65
- uses: nexterias/actions-vercel@v1
66
id: vercel
67
with:
- token: $vercel_token
68
- org-id: $org_id
69
- project-id: $project_id
+ token: ${{ steps.generate_vars.outputs.vercel_token }}
+ org-id: ${{ steps.generate_vars.outputs.org_id }}
70
+ project-id: ${{ steps.generate_vars.outputs.project_id }}
71
production: true
72
prebuilt: true
0 commit comments