File tree Expand file tree Collapse file tree 3 files changed +27
-8
lines changed
Expand file tree Collapse file tree 3 files changed +27
-8
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches-ignore :
66 - master
7+ - develop
78
89jobs :
910 build :
1819 run : |
1920 DOTNET_CLI_TELEMETRY_OPTOUT=1
2021 dotnet build --nologo --configuration Release
21- dotnet pack --no-build -c Release -o nuget
22- - name : MyGet push
23- run : |
24- source=https://www.myget.org/F/fsharp-collections-immutable/api/v3/index.json
25- key=${{secrets.MyGet_Key}}
26- dotnet nuget push -s $source -k $key nuget/*.nupkg
27-
28-
Original file line number Diff line number Diff line change 1+ name : publish to MyGet
2+
3+ on :
4+ push :
5+ branches :
6+ - develop
7+
8+ jobs :
9+ build :
10+
11+ runs-on : ubuntu-latest
12+
13+ steps :
14+ - uses : actions/checkout@v2
15+ - name : Setup .NET Core
16+ uses : actions/setup-dotnet@v1
17+ - name : Build with dotnet
18+ run : |
19+ DOTNET_CLI_TELEMETRY_OPTOUT=1
20+ dotnet build --nologo --configuration Release
21+ dotnet pack --no-build -c Release -o nuget
22+ - name : MyGet push
23+ run : |
24+ source=https://www.myget.org/F/fsharp-collections-immutable/api/v3/index.json
25+ key=${{secrets.MyGet_Key}}
26+ dotnet nuget push -s $source -k $key nuget/*.nupkg
File renamed without changes.
You can’t perform that action at this time.
0 commit comments