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.
1 parent 53a58d5 commit 9c02330Copy full SHA for 9c02330
.github/workflows/release.yml
@@ -39,7 +39,8 @@ jobs:
39
$LastTag = git describe --tags;
40
$DroppedTag = ($LastTag).TrimStart('v');
41
echo "Last tag is: $DroppedTag";
42
- $Version = $(echo $string | cut -d'-' -f1) + "-preview";
+ $Suffix = "-preview"
43
+ $Version = $(echo $string | cut -d'-' -f1)$Suffix;
44
echo "Publishing version: $Version";
45
dotnet pack ./src/TensorFlowNET.Core/Tensorflow.Binding.csproj -c Release -o packages /p:PackageVersion=$Version /p:Version=$Version;
46
dotnet pack ./src/TensorFlowNET.Keras/Tensorflow.Keras.csproj -c Release -o packages /p:PackageVersion=$Version /p:Version=$Version;
0 commit comments