Skip to content

Commit 0f73fd8

Browse files
Andreas Vilinskixperiandri
authored andcommitted
push branches to MyGet
1 parent e09fa6b commit 0f73fd8

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: .NET Core
22

3-
on: [push]
3+
on:
4+
push:
5+
branches-ignore:
6+
- master
47

58
jobs:
69
build:
@@ -16,8 +19,10 @@ jobs:
1619
DOTNET_CLI_TELEMETRY_OPTOUT=1
1720
dotnet build --nologo --configuration Release
1821
dotnet pack --no-build -c Release
19-
- name: NuGet push
22+
- name: MyGet push
2023
run: |
21-
source=ADD_SOURCE_URL_HERE
22-
key=ADD_NUGET_KEY #${{secrets.myget_froto_api_key}}
23-
echo "dotnet nuget push -s $source -k $key nuget/*.nupkg"
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+

src/FSharp.Collections.Immutable/FSharp.Collections.Immutable.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Company>XperiAndri</Company>
1010
<ProductName>FSharp.Collections.Immutable</ProductName>
1111
<Copyright>Copyright © XperiAndri 2016</Copyright>
12-
<Version>0.1.0</Version>
12+
<Version>1.0.0</Version>
1313
<Authors>XperiAndri;EventHelix</Authors>
1414
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1515
<PackageId>FSharp.Collections.Immutable</PackageId>

0 commit comments

Comments
 (0)