Skip to content

Commit 91237a7

Browse files
committed
corrected GH Action
1 parent bbe670b commit 91237a7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

TTSTextNormalization/TTSTextNormalization.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050

5151
<ItemGroup>
5252
<None Remove="data-by-emoji.json" />
53-
<None Include="LICENSE.txt" Pack="true" PackagePath="" />
54-
<None Include="README.md" Pack="true" PackagePath="" />
53+
<None Include="..\LICENSE.txt" Pack="true" PackagePath="" />
54+
<None Include="..\README.md" Pack="true" PackagePath="" />
5555
</ItemGroup>
5656

5757
<ItemGroup>

dotnet-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@ jobs:
4242
dotnet-version: '9.x' # Use the .NET 9 SDK
4343

4444
- name: Restore dependencies
45-
run: dotnet restore StreamWeaver.TTSTextNormalization.sln # Restore for the whole solution
45+
run: dotnet restore TTSTextNormalization.sln # Restore for the whole solution
4646

4747
- name: Build Library
4848
# Build the specific library project in Release config
4949
# Override the Version using the extracted tag version
50-
run: dotnet build StreamWeaver.TTSTextNormalization/StreamWeaver.TTSTextNormalization.csproj --configuration Release --no-restore
50+
run: dotnet build TTSTextNormalization/TTSTextNormalization.csproj --configuration Release --no-restore
5151

5252
- name: Pack Library
5353
# Pack the specific library project
5454
# Use the extracted tag version again
5555
# Output packages to an 'artifacts' directory
56-
run: dotnet pack StreamWeaver.TTSTextNormalization/StreamWeaver.TTSTextNormalization.csproj --configuration Release --no-build --output ${{ env.NuGetDirectory }}
56+
run: dotnet pack TTSTextNormalization/TTSTextNormalization.csproj --configuration Release --no-build --output ${{ env.NuGetDirectory }}
5757

5858
- uses: actions/upload-artifact@v4
5959
with:

0 commit comments

Comments
 (0)