Skip to content

Commit 58f06cd

Browse files
committed
feat: update 1.35.1 tag
1 parent 83d642e commit 58f06cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-nethermind-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: |
2323
sudo apt-get update && sudo apt-get install xmlstarlet -y --no-install-recommends
2424
version_prefix=$(xmlstarlet sel -t -v "//Project/PropertyGroup/VersionPrefix" Directory.Build.props)
25-
version_suffix=$(xmlstarlet sel -t -v "//Project/PropertyGroup/VersionSuffix" Directory.Build.props)
25+
version_suffix=$(xmlstarlet sel -t -v "//Project/PropertyGroup/VersionSuffix" Directory.Build.props 2>/dev/null || echo "")
2626
version=$([[ -n "$version_suffix" ]] && echo "$version_prefix-$version_suffix" || echo "$version_prefix")
2727
echo "Detected version $version"
2828
echo "PACKAGE_PREFIX=nethermind-$version-${GITHUB_SHA:0:8}" >> $GITHUB_ENV

src/Nethermind/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<SourceDateEpoch>$(SOURCE_DATE_EPOCH)</SourceDateEpoch>
77
<SourceDateEpoch Condition="'$(SourceDateEpoch)' == ''">$([System.DateTimeOffset]::UtcNow.ToUnixTimeSeconds())</SourceDateEpoch>
88
<VersionPrefix>1.35.1</VersionPrefix>
9-
<VersionSuffix>rc</VersionSuffix>
9+
<VersionSuffix></VersionSuffix>
1010
</PropertyGroup>
1111

1212
<ItemGroup Label="AssemblyCustomMetadata">

0 commit comments

Comments
 (0)