Skip to content

Commit 8616e89

Browse files
committed
Update release yml to solution file
1 parent b42ca25 commit 8616e89

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ jobs:
2727
VERSION=${GITHUB_REF#refs/tags/v}
2828
echo "PACKAGE_VERSION=$VERSION" >> $GITHUB_ENV
2929
30-
# 4. Restore dependencies for the library
31-
- name: Restore library dependencies
32-
run: dotnet restore src/CatBox.NET/CatBox.NET.csproj
30+
# 4. Restore dependencies
31+
- name: Restore dependencies
32+
run: dotnet restore CatBox.NET.sln
3333

34-
# 5. Build the library
35-
- name: Build library
36-
run: dotnet build src/CatBox.NET/CatBox.NET.csproj --configuration Release --no-restore
34+
# 5. Build solution
35+
- name: Build solution
36+
run: dotnet build CatBox.NET.sln --configuration Release --no-restore
3737

38-
# 6. Run tests (pointing to your test project)
38+
# 6. Run tests
3939
- name: Run tests
40-
run: dotnet test tests/CatBox.Tests/CatBox.Tests.csproj --configuration Release --no-build
40+
run: dotnet test CatBox.NET.sln --configuration Release --no-build
4141

4242
# 7. Pack the NuGet package
4343
- name: Pack NuGet package

0 commit comments

Comments
 (0)