Skip to content

Commit a8961ab

Browse files
committed
Fix GitHub workflow again.
1 parent e431909 commit a8961ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ jobs:
3939
echo "No version tag found, using 0.0.0"
4040
}
4141
- name: Restore dependencies
42-
run: dotnet restore SharpConfig/SharpConfig.csproj
42+
run: dotnet restore Src/SharpConfig.csproj
4343

4444
- name: Build
45-
run: dotnet build SharpConfig/SharpConfig.csproj --configuration Release --no-restore /p:Version=${{ steps.get_version.outputs.VERSION }}
45+
run: dotnet build Src/SharpConfig.csproj --configuration Release --no-restore /p:Version=${{ steps.get_version.outputs.VERSION }}
4646

4747
- name: Test
4848
run: dotnet test Tests/Tests.csproj --no-build --configuration Release --verbosity normal
4949

5050
- name: Package
51-
run: dotnet pack SharpConfig/SharpConfig.csproj --configuration Release --no-build --output ./artifacts /p:Version=${{ steps.get_version.outputs.VERSION }}
51+
run: dotnet pack Src/SharpConfig.csproj --configuration Release --no-build --output ./artifacts /p:Version=${{ steps.get_version.outputs.VERSION }}
5252

5353
- name: Upload artifacts
5454
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)