We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d45f0af commit 6ee78e9Copy full SHA for 6ee78e9
1 file changed
action.yml
@@ -104,3 +104,12 @@ runs:
104
run: |
105
cd vuepress
106
npm ci && ${{ inputs.debug-build == true && 'DEBUG=*' || '' }} npm run build ${{ inputs.debug-build == true && '-- --debug' || '' }}
107
+
108
+ - name: Upload VuePress site
109
+ shell: bash
110
+ run: |
111
+ cd vuepress
112
+ curl --request POST \
113
+ --header "Authorization: Bearer ${{steps.token.outputs.token}}" \
114
+ --form Docs=@./.vuepress/dist.zip \
115
+ "https://developer.bcc.no/UploadDoc?isPublic=${{inputs.public}}&auth=${{inputs.authentication}}&customContainerName=DocumentationSite"
0 commit comments