Skip to content

Commit 1ed1230

Browse files
authored
Merge pull request #6 from dlidstrom/dlidstrom-patch-1
Update Sprout.fsproj
2 parents 6ff6a65 + 0541881 commit 1ed1230

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ jobs:
9494
- name: Publish package
9595
env:
9696
VERSION: ${{ needs.get-version.outputs.tag }}
97-
API_KEY: ${{ secrets.NUGET_PASSWORD }}
9897
NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }}
9998
run: |
100-
dotnet nuget push "bin/Release/Sprout.${VERSION:1}.nupkg" --api-key ${API_KEY} --source nuget --skip-duplicate
101-
dotnet nuget push "bin/Release/Sprout.${VERSION:1}.nupkg" --api-key ${NUGET_APIKEY} --source https://api.nuget.org/v3/index.json --skip-duplicate
99+
dotnet nuget push "bin/Release/*.nupkg" --api-key ${NUGET_APIKEY} --source https://api.nuget.org/v3/index.json --skip-duplicate

Readme.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
> *Sprout is a lightweight F# test DSL with a clean, composable structure built on computation expressions. This allows your test suites to grow almost organically - i.e. sprout.*
88
99
[![Build](https://github.com/dlidstrom/Sprout/actions/workflows/build.yml/badge.svg)](https://github.com/dlidstrom/Sprout/actions/workflows/build.yml)
10+
[![NuGet version](https://badge.fury.io/nu/dlidstrom.Sprout.svg)](https://badge.fury.io/nu/dlidstrom.Sprout)
1011

1112
## ✅ Features
1213

@@ -38,11 +39,9 @@ coming from a functional programming background.
3839
### 🚀 Getting Started
3940

4041
```bash
41-
dotnet add package Sprout
42+
dotnet add package dlidstrom.Sprout
4243
```
4344

44-
> Sprout is currently only available from [GitHub Packages](https://github.com/dlidstrom/Sprout/pkgs/nuget/Sprout).
45-
4645
---
4746

4847
### 🧪 Example Test

Sprout.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
7-
<PackageId>Sprout</PackageId>
7+
<PackageId>dlidstrom.Sprout</PackageId>
88
<Version>0.0.1-dev</Version>
99
<Title>Sprout: BDD Testing for F#</Title>
1010
<Description>Sprout is a Behavior-Driven Development (BDD) testing framework for F# that allows you to write tests in a natural language style, making it easier to understand and maintain.</Description>

0 commit comments

Comments
 (0)