Skip to content

Commit

Permalink
Update publish-csharp-apidocs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
snnn authored Nov 18, 2024
1 parent 4257efc commit 2050142
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish-csharp-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ jobs:
shell: pwsh
run: |
New-Item -Path _site/docs/api -Force -ItemType "Directory" | Out-Null
Remove-Item -Recurse -Force _site/docs/api/csharp
Move-Item -Path csharp\ApiDocs\csharp -Destination _site\docs\api\csharp
$OutputDirectory="_site/docs/api/csharp"
if (Test-Path $OutputDirectory) { Remove-Item -Recurse -Force $OutputDirectory }
Move-Item -Path csharp\ApiDocs\csharp -Destination $OutputDirectory
- name: Upload docs artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 2050142

Please sign in to comment.