Skip to content

Commit f9b95db

Browse files
committed
fixed variables
1 parent 0345b53 commit f9b95db

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,9 @@ jobs:
213213
# if: ${{ github.env.is_release && !github.env.is_preview }}
214214
name: Docs with docfx
215215
# needs: [publish-production-package]
216-
needs: [build, global-variables]
216+
needs: [versioning, build]
217+
env:
218+
assembly-version: ${{ needs.versioning.outputs.assembly-version }}
217219
environment:
218220
name: github-pages
219221
url: ${{ steps.deployment.outputs.page_url }}
@@ -229,7 +231,7 @@ jobs:
229231
- run: docfx ./docfx/api-reference.json
230232
- run: |
231233
mkdir -p ./docs/${{ env.assembly-version }}
232-
cp -r ./docs/temp ./docs/${{ env.assembly-version }}
234+
cp -r ./docs/temp/ ./docs/${{ env.assembly-version }}
233235
- run: |
234236
git checkout docs
235237
git config --global user.email "action@github.com"

0 commit comments

Comments
 (0)