We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 228534e commit 3c42a4cCopy full SHA for 3c42a4c
.github/workflows/release_nuget_workflow.yaml
@@ -31,7 +31,7 @@ jobs:
31
- name: Get version and suffix
32
run: |
33
echo %TAG_NAME%
34
- for /f "tokens=1,2 delims=-" %%a in ("%TAG_NAME%") do set version=%%a&set suffix=%%b
+ for /f "tokens=1,2 delims=-" %a in ("%TAG_NAME%") do set version=%a&set suffix=%b
35
echo %version%
36
echo %suffix%
37
echo ::set-env name=VERSION::%version%
@@ -44,8 +44,8 @@ jobs:
44
echo ::set-env name=NUSPECPATH::%nuspecpath%
45
46
- name: Install NuGet
47
- run: choco install nuget.commandline -y
48
-
+ run: choco install nuget.commandline -y
+
49
- name: NuGet restore
50
run: nuget restore
51
0 commit comments