Skip to content

Commit

Permalink
Fixed release documentation file path
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei15193 committed Jun 1, 2023
1 parent 4d3d527 commit 3171b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ jobs:
return $versionParts
}
[string] $documentationDirectoryPath = if ('${{ github.ref_name }}' -ieq 'dev') { '${{ github.ref_name }}' } else { 'dev/${{ github.ref_name }}' }
[string] $documentationDirectoryPath = if ('${{ github.event_name }}' -ieq 'release' -or '${{ github.ref_name }}' -ieq 'dev') { '${{ github.ref_name }}' } else { 'dev/${{ github.ref_name }}' }
dotnet run `
--project CodeMap.Documentation `
--configuration Release `
Expand Down

0 comments on commit 3171b74

Please sign in to comment.