Skip to content

Commit

Permalink
Release version 11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Mangel committed Feb 8, 2023
1 parent ee5b1fb commit dde3551
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 11.0.0 - 2023-02-08

### Fixed

* Guard `decodeMaybeNull` to evaluates the `decoder` only if the value is not `null`

## 10.1.0 - 2023-02-01

### Changed
Expand Down
17 changes: 7 additions & 10 deletions build.fsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#r "nuget: Fun.Build, 0.2.4"
#r "nuget: Fun.Build, 0.2.9"
#r "nuget: Fake.IO.FileSystem, 5.23.1"
#r "nuget: Fake.Core.Environment, 5.23.1"
#r "nuget: Fake.Tools.Git, 5.23.1"
Expand Down Expand Up @@ -154,16 +154,18 @@ pipeline "Release" {
description "Release the project on Nuget and GitHub"
workingDir __SOURCE_DIRECTORY__

whenAll {
branch "main"
envVar "NUGET_KEY"
envVar "GITHUB_TOKEN"
}

Stages.clean
Stages.adaptTest
Stages.test

stage "Publish packages to NuGet" {
run "dotnet pack src -c Release"
whenAll {
branch "main"
envVar "NUGET_KEY"
}

run (fun ctx ->
let nugetKey = ctx.GetEnvVar "NUGET_KEY"
Expand All @@ -172,11 +174,6 @@ pipeline "Release" {
}

stage "Release on Github" {
whenAll {
branch "main"
envVar "GITHUB_TOKEN"
}

run (fun ctx ->
let githubToken = ctx.GetEnvVar "GITHUB_TOKEN"

Expand Down

0 comments on commit dde3551

Please sign in to comment.