Skip to content

Commit

Permalink
Release 0.2.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrainger committed Oct 19, 2019
1 parent 1662611 commit 5f8485c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
- name: Add NuGet source
run: nuget sources Add -Name "GPR" -Source "https://nuget.pkg.github.com/mysql-net/index.json" -UserName bgrainger -Password ${{ secrets.GITHUB_TOKEN }}
- name: Publish to GPR
run: nuget push src\PlaygroundLibrary\bin\Release\PlaygroundLibrary.${{ github.ref }}.nupkg -Source GPR
run: |
$tag = "${{ github.ref }}".Substring(10)
nuget push src\PlaygroundLibrary\bin\Release\PlaygroundLibrary.$tag.nupkg -Source GPR
release:
name: Create Release
Expand Down
2 changes: 1 addition & 1 deletion src/PlaygroundLibrary/PlaygroundLibrary.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<VersionPrefix>0.2.2</VersionPrefix>
<VersionPrefix>0.2.3</VersionPrefix>
<TargetFramework>netstandard2.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Title>Playground Library</Title>
Expand Down

0 comments on commit 5f8485c

Please sign in to comment.