diff --git a/.github/workflows/build-test-publish.yml b/.github/workflows/build-test-publish.yml index c4e07ad..92954c4 100644 --- a/.github/workflows/build-test-publish.yml +++ b/.github/workflows/build-test-publish.yml @@ -25,13 +25,13 @@ jobs: echo $git_commit_url > "./src/IntoRdf/Properties/commit.url" - name: Build Solution - run: dotnet build --no-restore --configuration Release + run: dotnet build ./src/IntoRdf --no-restore --configuration Release - name: Tests - run: dotnet test --no-restore --no-build --configuration Release + run: dotnet test ./src/IntoRdf --no-restore --no-build --configuration Release - name: Create nuget Artifact - run: dotnet pack IntoRdf --no-restore --no-build --configuration Release --output ${{ github.workspace }}/out -p:PackageVersion="${{ github.event.release.name }}" + run: dotnet pack ./src/IntoRdf --no-restore --no-build --configuration Release --output ${{ github.workspace }}/out -p:PackageVersion="${{ github.event.release.name }}" - name: Publish run: dotnet nuget push ${{ github.workspace }}/out/IntoRdf*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json