We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0345b53 commit f9b95dbCopy full SHA for f9b95db
1 file changed
.github/workflows/build.yml
@@ -213,7 +213,9 @@ jobs:
213
# if: ${{ github.env.is_release && !github.env.is_preview }}
214
name: Docs with docfx
215
# needs: [publish-production-package]
216
- needs: [build, global-variables]
+ needs: [versioning, build]
217
+ env:
218
+ assembly-version: ${{ needs.versioning.outputs.assembly-version }}
219
environment:
220
name: github-pages
221
url: ${{ steps.deployment.outputs.page_url }}
@@ -229,7 +231,7 @@ jobs:
229
231
- run: docfx ./docfx/api-reference.json
230
232
- run: |
233
mkdir -p ./docs/${{ env.assembly-version }}
- cp -r ./docs/temp ./docs/${{ env.assembly-version }}
234
+ cp -r ./docs/temp/ ./docs/${{ env.assembly-version }}
235
236
git checkout docs
237
git config --global user.email "action@github.com"
0 commit comments