Skip to content

Commit

Permalink
Update path in github action (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
eoye authored Aug 30, 2024
1 parent 21b8db4 commit 4819f02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 4819f02

Please sign in to comment.