We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e4de87 commit f763b1dCopy full SHA for f763b1d
2 files changed
.github/actions/docfx-build/action.yml
@@ -38,8 +38,13 @@ runs:
38
run: dotnet tool update -g docfx
39
shell: bash
40
- name: 'Generate documentation'
41
- run: docfx build ${{ inputs.docfx-json-manifest }} --output ${{ inputs.output-directory }}
+ run: docfx build ${{ inputs.docfx-json-manifest }}
42
43
+ - name: 'Copy to output directory'
44
+ shell: bash
45
+ run: |
46
+ mkdir -p "${{ inputs.output-directory }}"
47
+ cp -r temp/* "${{ inputs.output-directory }}"
48
- name: Upload artifact
49
uses: actions/upload-artifact@v4
50
with:
api-reference/assembly-metadata.json
@@ -9,7 +9,8 @@
9
"**/*.csproj"
10
]
11
}
12
- ]
+ ],
13
+ "dest": "temp"
14
15
16
0 commit comments