File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 22
22
- name : Add NuGet source
23
23
run : nuget sources Add -Name "GPR" -Source "https://nuget.pkg.github.com/mysql-net/index.json" -UserName bgrainger -Password ${{ secrets.GITHUB_TOKEN }}
24
24
- 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
26
28
27
29
release :
28
30
name : Create Release
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <VersionPrefix >0.2.2 </VersionPrefix >
4
+ <VersionPrefix >0.2.3 </VersionPrefix >
5
5
<TargetFramework >netstandard2.0</TargetFramework >
6
6
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
7
7
<Title >Playground Library</Title >
You can’t perform that action at this time.
0 commit comments