Skip to content

Commit 9e13365

Browse files
committed
fix: Correct solution file name in restore and build steps for NuGet workflow
1 parent 0986d58 commit 9e13365

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/nuget-release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ jobs:
4242
chmod +x ./DotnetDevKR.TailwindCSS/runtime/install.sh
4343
./DotnetDevKR.TailwindCSS/runtime/install.sh ${{ env.TAILWINDCSS_VERSION }}
4444
45-
- name: Restore dependencies
46-
run: dotnet restore DotnetDevKR.TailwindCSS.slnx
47-
4845
- name: Build
49-
run: dotnet build DotnetDevKR.TailwindCSS.slnx --configuration Release --no-restore
46+
run: dotnet build DotnetDevKR.TailwindCSS.sln --configuration Release
47+
48+
- name: Restore dependencies
49+
run: dotnet restore DotnetDevKR.TailwindCSS.sln --source https://api.nuget.org/v3/index.json
5050

5151
- name: Pack
5252
run: |
5353
dotnet pack ./DotnetDevKR.TailwindCSS/DotnetDevKR.TailwindCSS.csproj --configuration Release \
54-
--no-build \
54+
--no-build --no-restore \
5555
--output ./artifacts \
5656
/p:Version=${{ env.VERSION }}
5757

0 commit comments

Comments
 (0)