We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f8485c commit a502db2Copy full SHA for a502db2
.github/workflows/create-release.yml
@@ -22,6 +22,7 @@ jobs:
22
- name: Add NuGet source
23
run: nuget sources Add -Name "GPR" -Source "https://nuget.pkg.github.com/mysql-net/index.json" -UserName bgrainger -Password ${{ secrets.GITHUB_TOKEN }}
24
- name: Publish to GPR
25
+ shell: pwsh
26
run: |
27
$tag = "${{ github.ref }}".Substring(10)
28
nuget push src\PlaygroundLibrary\bin\Release\PlaygroundLibrary.$tag.nupkg -Source GPR
src/PlaygroundLibrary/PlaygroundLibrary.csproj
@@ -1,7 +1,7 @@
1
<Project Sdk="Microsoft.NET.Sdk">
2
3
<PropertyGroup>
4
- <VersionPrefix>0.2.3</VersionPrefix>
+ <VersionPrefix>0.2.4</VersionPrefix>
5
<TargetFramework>netstandard2.0</TargetFramework>
6
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
7
<Title>Playground Library</Title>
0 commit comments