Skip to content

Commit

Permalink
GA build
Browse files Browse the repository at this point in the history
  • Loading branch information
gavbrennan committed Oct 6, 2022
1 parent 2b661f4 commit 9b171cb
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions .github/workflows/QwackMainBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,23 @@ jobs:
run: dotnet restore
working-directory: '.'

- name: Pack
- name: Pack Dates
run: dotnet pack --configuration Release /p:Version=${VERSION} --output .
working-directory: '.'
working-directory: './src/Qwack.Dates'
env:
VERSION: ${{ env.version }}

- name: Pack Core
run: dotnet pack --configuration Release /p:Version=${VERSION} --output .
working-directory: './src/Qwack.Core'
env:
VERSION: ${{ env.version }}

- name: Push
run: |
dotnet nuget push Qwack.Dates.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
dotnet nuget push Qwack.Core.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
dotnet nuget push Qwack.Math.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
dotnet nuget push Qwack.Math.Interpolation.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
dotnet nuget push Qwack.Options.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
dotnet nuget push Qwack.Paths.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
dotnet nuget push Qwack.Providers.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
dotnet nuget push Qwack.Random.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
dotnet nuget push Qwack.Utils.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
dotnet nuget push Qwack.Models.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
dotnet nuget push Qwack.Futures.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
dotnet nuget push Qwack.Transport.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_APIKEY}
working-directory: './src/'
env:
NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }}
Expand Down

0 comments on commit 9b171cb

Please sign in to comment.