Skip to content

Commit

Permalink
Publish Lib9c.Abstractions for Lib9c dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ipdae committed Sep 16, 2023
1 parent 9b9db0c commit 97d3cc8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,12 @@ jobs:
if: github.event_name != 'pull_request'
run: |
if [[ "$NUGET_API_KEY" != "" ]]; then
dotnet nuget push ./Lib9c/.bin/Lib9c.*.nupkg \
--api-key "$NUGET_API_KEY" \
--source https://api.nuget.org/v3/index.json
for project in Lib9c Lib9c.Abstractions
do
dotnet nuget push ./$project/.bin/Lib9c.*.nupkg \
--api-key "$NUGET_API_KEY" \
--source https://api.nuget.org/v3/index.json
done
fi
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
Expand Down

0 comments on commit 97d3cc8

Please sign in to comment.