Skip to content

Commit 09be673

Browse files
authored
Merge pull request #520 from Inxton/add-ui-companion-and-referencing-in-target-projects
add ui companion and referencing in target projects
2 parents cdd2db2 + 4ceab7f commit 09be673

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

.github/workflows/docs.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,22 @@ jobs:
4141
- name: Generate documentation
4242
run: dotnet docfx docfx/docfx.json
4343

44+
- name: Upload docs artifact
45+
uses: actions/upload-artifact@v4
46+
with:
47+
name: docs-output
48+
path: docs
49+
50+
upload-pages:
51+
runs-on: ubuntu-latest
52+
needs: build
53+
steps:
54+
- name: Download docs artifact
55+
uses: actions/download-artifact@v4
56+
with:
57+
name: docs-output
58+
path: docs
59+
4460
- name: Upload Pages artifact
4561
uses: actions/upload-pages-artifact@v3
4662
with:
@@ -51,7 +67,7 @@ jobs:
5167
name: github-pages
5268
url: ${{ steps.deployment.outputs.page_url }}
5369
runs-on: ubuntu-latest
54-
needs: build
70+
needs: upload-pages
5571
steps:
5672
- name: Deploy to GitHub Pages
5773
id: deployment

0 commit comments

Comments
 (0)