Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,6 @@ jobs:
- name: Publish package
env:
VERSION: ${{ needs.get-version.outputs.tag }}
API_KEY: ${{ secrets.NUGET_PASSWORD }}
NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }}
run: |
dotnet nuget push "bin/Release/Sprout.${VERSION:1}.nupkg" --api-key ${API_KEY} --source nuget --skip-duplicate
dotnet nuget push "bin/Release/Sprout.${VERSION:1}.nupkg" --api-key ${NUGET_APIKEY} --source https://api.nuget.org/v3/index.json --skip-duplicate
dotnet nuget push "bin/Release/*.nupkg" --api-key ${NUGET_APIKEY} --source https://api.nuget.org/v3/index.json --skip-duplicate
5 changes: 2 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
> *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.*

[![Build](https://github.com/dlidstrom/Sprout/actions/workflows/build.yml/badge.svg)](https://github.com/dlidstrom/Sprout/actions/workflows/build.yml)
[![NuGet version](https://badge.fury.io/nu/dlidstrom.Sprout.svg)](https://badge.fury.io/nu/dlidstrom.Sprout)

## ✅ Features

Expand Down Expand Up @@ -38,11 +39,9 @@ coming from a functional programming background.
### 🚀 Getting Started

```bash
dotnet add package Sprout
dotnet add package dlidstrom.Sprout
```

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

---

### 🧪 Example Test
Expand Down
2 changes: 1 addition & 1 deletion Sprout.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Sprout</PackageId>
<PackageId>dlidstrom.Sprout</PackageId>
<Version>0.0.1-dev</Version>
<Title>Sprout: BDD Testing for F#</Title>
<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>
Expand Down
Loading