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 b31f45a commit 16fe19dCopy full SHA for 16fe19d
actions/publish-vercel/action.yml
@@ -25,10 +25,11 @@ runs:
25
- name: "Create temp vercel.json file"
26
shell: bash
27
run: |
28
- cat <<EOF > .artifacts/docs/html/vercel.json
+ cat <<EOF > vercel.json
29
{
30
"version": 2,
31
"public": false,
32
+ "outputDirectory": ".artifacts/docs/html"
33
"git": {
34
"deploymentEnabled": false
35
}
@@ -41,6 +42,6 @@ runs:
41
42
vercel-args: '--prod' #Optional
43
vercel-org-id: ${{ inputs.VERCEL_ORG_ID}} #Required
44
vercel-project-id: ${{ inputs.VERCEL_PROJECT_ID}} #Required
- working-directory: .artifacts/docs/html
45
+ working-directory: .
46
47
0 commit comments