Skip to content

Commit 8a43265

Browse files
committed
Update nuget-publish.yml
1 parent 62e31aa commit 8a43265

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/nuget-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Extract release version
2020
id: release_version
21-
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
21+
run: echo "RELEASE_VERSION=$(echo ${GITHUB_REF#refs/tags/} | cut -c 2-)" >> $GITHUB_ENV
2222

2323
- name: Restore dependencies
2424
run: dotnet restore

src/X.Serilog.Sinks.Telegram/X.Serilog.Sinks.Telegram.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,18 @@
33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6+
<IsPackable>true</IsPackable>
7+
68
<Title>X.Serilog.Sinks.Telegram</Title>
7-
<Authors>Vladislav Bardin</Authors>
9+
<Authors>Vladyslav Bardin</Authors>
810
<Description>This is a sink for Serilog logger that allows you to write logs or notifications just to your Telegram. This logger is fully compatible with Serilog's infrastructure and supports all its features. For more info and examples, visit sink's repository</Description>
9-
<Copyright>Copyright (c) 2021 Vladislav Bardin</Copyright>
11+
<Copyright>Copyright (c) 2024 Vladyslav Bardin</Copyright>
1012
<PackageProjectUrl>https://github.com/Bardin08/X.Serilog.Sinks.Telegram</PackageProjectUrl>
1113
<RepositoryUrl>https://github.com/Bardin08/X.Serilog.Sinks.Telegram</RepositoryUrl>
1214
<PackageTags>serilog-sink, serilog, serilog-extensions</PackageTags>
1315
<LangVersion>12</LangVersion>
1416
<Nullable>enable</Nullable>
17+
<Version>3.0.1</Version>
1518
</PropertyGroup>
1619

1720
<ItemGroup>

0 commit comments

Comments
 (0)