Skip to content

Commit f763b1d

Browse files
committed
fix
1 parent 4e4de87 commit f763b1d

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/actions/docfx-build/action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,13 @@ runs:
3838
run: dotnet tool update -g docfx
3939
shell: bash
4040
- name: 'Generate documentation'
41-
run: docfx build ${{ inputs.docfx-json-manifest }} --output ${{ inputs.output-directory }}
41+
run: docfx build ${{ inputs.docfx-json-manifest }}
4242
shell: bash
43+
- name: 'Copy to output directory'
44+
shell: bash
45+
run: |
46+
mkdir -p "${{ inputs.output-directory }}"
47+
cp -r temp/* "${{ inputs.output-directory }}"
4348
- name: Upload artifact
4449
uses: actions/upload-artifact@v4
4550
with:

api-reference/assembly-metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"**/*.csproj"
1010
]
1111
}
12-
]
12+
],
13+
"dest": "temp"
1314
}
1415
]
1516
}

0 commit comments

Comments
 (0)