Skip to content

Commit 5f8485c

Browse files
committed
Release 0.2.3.
1 parent 1662611 commit 5f8485c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/create-release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ jobs:
2222
- name: Add NuGet source
2323
run: nuget sources Add -Name "GPR" -Source "https://nuget.pkg.github.com/mysql-net/index.json" -UserName bgrainger -Password ${{ secrets.GITHUB_TOKEN }}
2424
- name: Publish to GPR
25-
run: nuget push src\PlaygroundLibrary\bin\Release\PlaygroundLibrary.${{ github.ref }}.nupkg -Source GPR
25+
run: |
26+
$tag = "${{ github.ref }}".Substring(10)
27+
nuget push src\PlaygroundLibrary\bin\Release\PlaygroundLibrary.$tag.nupkg -Source GPR
2628
2729
release:
2830
name: Create Release

src/PlaygroundLibrary/PlaygroundLibrary.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>0.2.2</VersionPrefix>
4+
<VersionPrefix>0.2.3</VersionPrefix>
55
<TargetFramework>netstandard2.0</TargetFramework>
66
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
77
<Title>Playground Library</Title>

0 commit comments

Comments
 (0)