10000
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 06e85a8 + a446add commit 4e34260Copy full SHA for 4e34260
.github/workflows/release.yml
@@ -37,9 +37,9 @@ jobs:
37
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*";
38
git fetch origin;
39
$LastTag = git describe --tags;
40
- $LastTag = ($LastTag).TrimStart('v');
41
- echo "Last tag is: $LastTag";
42
- $Version = ${LastTag%%-*} + "-preview";
+ dropped_tag = ($LastTag).TrimStart('v');
+ echo "Last tag is: $dropped_tag";
+ $Version = ${dropped_tag%%-*} + "-preview";
43
echo "Publishing version: $Version";
44
dotnet pack ./src/TensorFlowNET.Core/Tensorflow.Binding.csproj -c Release -o packages /p:PackageVersion=$Version /p:Version=$Version;
45
dotnet pack ./src/TensorFlowNET.Keras/Tensorflow.Keras.csproj -c Release -o packages /p:PackageVersion=$Version /p:Version=$Version;
0 commit comments