8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0b86a5b + 70d1c53 commit 8ff980fCopy full SHA for 8ff980f
.github/workflows/release.yml
@@ -40,7 +40,8 @@ jobs:
40
$DroppedTag = ($LastTag).TrimStart('v');
41
echo "Last tag is: $DroppedTag";
42
$Suffix = "-preview"
43
- $Version = $(echo $string | cut -d'-' -f1)$Suffix;
+ $Prefix = $(echo $string | cut -d'-' -f1)
44
+ $Version = "${Prefix}${Suffix}";
45
echo "Publishing version: $Version";
46
dotnet pack ./src/TensorFlowNET.Core/Tensorflow.Binding.csproj -c Release -o packages /p:PackageVersion=$Version /p:Version=$Version;
47
dotnet pack ./src/TensorFlowNET.Keras/Tensorflow.Keras.csproj -c Release -o packages /p:PackageVersion=$Version /p:Version=$Version;
0 commit comments