File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 66 build :
77
88 runs-on : ubuntu-latest
9-
9+
1010 steps :
1111 - name : Checkout
1212 uses : actions/checkout@v2
1818
1919 - name : Set VERSION variable from tag
2020 run : echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
21-
21+
2222 - name : Setup .NET
2323 uses : actions/setup-dotnet@v1
2424 with :
3737 run : dotnet pack --configuration Release /p:NuGetVersion=${VERSION} /p:PackageVersion=${VERSION} --include-symbols --output .
3838
3939 - name : Push
40- run : dotnet nuget push FSharp.Data.Validation.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${MTA_NUGET_KEY} --symbol-source https://symbols.nuget.org/download/symbols --symbol-api-key ${MTA_NUGET_KEY}
40+ run : |
41+ dotnet nuget push FSharp.Data.Validation.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${MTA_NUGET_KEY} --symbol-source https://symbols.nuget.org/download/symbols --symbol-api-key ${MTA_NUGET_KEY}
42+ dotnet nuget push FSharp.Data.Validation.Async.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${MTA_NUGET_KEY} --symbol-source https://symbols.nuget.org/download/symbols --symbol-api-key ${MTA_NUGET_KEY}
4143
4244 env :
4345 MTA_NUGET_KEY : ${{ secrets.MTA_NUGET_KEY }}
You can’t perform that action at this time.
0 commit comments