Skip to content

Commit

Permalink
Fix build action
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienros committed Mar 1, 2023
1 parent aced928 commit fb73747
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
run: dotnet test --configuration Release /p:Compiled=true

- name: Pack
run: dotnet pack --output artifacts --configuration Release -p:PackageVersion=$GITHUB_RUN_NUMBER
run: |
PACKAGE_PATH="${GITHUB_WORKSPACE}/artifacts"
dotnet pack --property:PackageOutputPath=$PACKAGE_PATH --configuration Release -p:PackageVersion=$GITHUB_RUN_NUMBER
- name: Publish on MyGet
run: dotnet nuget push "artifacts/*.nupkg" --api-key ${{ secrets.MYGET_API_KEY }} --skip-duplicate --source https://www.myget.org/F/fluid/api/v2/package

0 comments on commit fb73747

Please sign in to comment.