Skip to content

Commit

Permalink
fix publish path
Browse files Browse the repository at this point in the history
  • Loading branch information
Tine Staric committed Sep 13, 2024
1 parent fe790f7 commit 426ec99
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/actions/dotnet-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ runs:
if: ${{ inputs.asset-publish == 'true' }}
with:
name: ${{ inputs.asset-name }}
path: CompanialCopAnalyzer/bin/Release/netstandard2.1/CompanialCop.dll
path: CompanialCopAnalyzer/bin/Release/netstandard2.1/CompanialCopAnalyzer.dll
compression-level: 0 # no compression

### Upload Asset as Latest
Expand All @@ -87,7 +87,7 @@ runs:
if: ${{ inputs.asset-publish == 'true' && inputs.al-latest == 'true' }}
with:
name: CompanialCop.dll
path: CompanialCopAnalyzer/bin/Release/netstandard2.1/CompanialCop.dll
path: CompanialCopAnalyzer/bin/Release/netstandard2.1/CompanialCopAnalyzer.dll
compression-level: 0 # no compression

### Upload Asset as Pre-Release
Expand All @@ -97,7 +97,7 @@ runs:
if: ${{ inputs.asset-publish == 'true' && inputs.al-prerelease == 'true' }}
with:
name: CompanialCop.AL-PreRelease.dll
path: CompanialCopAnalyzer/bin/Release/netstandard2.1/CompanialCop.dll
path: CompanialCopAnalyzer/bin/Release/netstandard2.1/CompanialCopAnalyzer.dll
compression-level: 0 # no compression

### Compatibility with previous naming of files
Expand All @@ -108,7 +108,7 @@ runs:
if: ${{ inputs.asset-publish == 'true' && inputs.al-latest == 'true' }}
with:
name: CompanialCop.current.dll
path: CompanialCopAnalyzer/bin/Release/netstandard2.1/CompanialCop.dll
path: CompanialCopAnalyzer/bin/Release/netstandard2.1/CompanialCopAnalyzer.dll
compression-level: 0 # no compression

### Release Asset as Next
Expand All @@ -118,5 +118,5 @@ runs:
if: ${{ inputs.asset-publish == 'true' && inputs.al-prerelease == 'true' }}
with:
name: CompanialCop.next.dll
path: CompanialCopAnalyzer/bin/Release/netstandard2.1/CompanialCop.dll
path: CompanialCopAnalyzer/bin/Release/netstandard2.1/CompanialCopAnalyzer.dll
compression-level: 0 # no compression

0 comments on commit 426ec99

Please sign in to comment.