Skip to content

Commit c8c16c5

Browse files
authored
Fix vercel publishing (#609)
1 parent b3cf3b6 commit c8c16c5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/docs.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Generating API documentation
33
on:
44
push:
55
branches:
6-
- 'master'
6+
- "master"
77

88
jobs:
99
docs:
@@ -34,4 +34,7 @@ jobs:
3434
run: docker run --rm --volume "$(pwd):/data" phpdoc/phpdoc:3.4 -vv --template default
3535

3636
- name: Upload documentation
37-
run: npx vercel deploy docs/api -t ${{ secrets.VERCEL_TOKEN }} --name php --scope temporal --prod --yes
37+
env:
38+
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
39+
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
40+
run: npx vercel deploy docs/api -t ${{ secrets.VERCEL_TOKEN }} --prod --yes

0 commit comments

Comments
 (0)