Skip to content

Commit f5cb78d

Browse files
vilinskixperiandri
authored andcommitted
fixes
1 parent d0b64c0 commit f5cb78d

File tree

3 files changed

+23
-10
lines changed

3 files changed

+23
-10
lines changed

.github/workflows/build.yml

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
name: .NET Core
22

3-
on:
4-
push:
5-
branches-ignore:
6-
- master
7-
83
jobs:
94
build:
10-
11-
runs-on: ubuntu-latest
12-
5+
on:
6+
push:
7+
branches-ignore:
8+
- master
9+
runs-on: ubuntu-latest
1310
steps:
1411
- uses: actions/checkout@v2
1512
- name: Setup .NET Core
@@ -25,4 +22,18 @@ jobs:
2522
key=${{secrets.MyGet_Key}}
2623
dotnet nuget push -s $source -k $key nuget/*.nupkg
2724
28-
25+
release:
26+
on:
27+
create:
28+
types:
29+
- tag
30+
branches:
31+
- master
32+
steps:
33+
- name: Release Version
34+
run: |
35+
dotnet pack -c Release -o nuget
36+
source=https://api.nuget.org/v3/index.json
37+
key=${{secrets.NuGet_Key}}
38+
# dotnet nuget push -s $source -k $key nuget/*.nupkg
39+
echo "This should only run on tag create"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
F# bindings for System.Collections.Immutable
44

5-
![.NET Core](https://github.com/vilinski/FSharp.Collections.Immutable/workflows/.NET%20Core/badge.svg)
5+
![.NET Core](https://github.com/fsprojects/FSharp.Collections.Immutable/workflows/.NET%20Core/badge.svg)

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<Copyright>Copyright © XperiAndri 2016</Copyright>
1212
<Version>1.0.0</Version>
1313
<Authors>XperiAndri;EventHelix</Authors>
14+
<Authors>XperiAndri;EventHelix;vilinski</Authors>
15+
<TargetFramework>netstandard2.0</TargetFramework>
1416
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1517
<PackageId>FSharp.Collections.Immutable</PackageId>
1618
<PackageTags>System;Immutable;Collections;FSharp;F#</PackageTags>

0 commit comments

Comments
 (0)