Skip to content

Commit 3c42a4c

Browse files
committed
Possible fix
1 parent 228534e commit 3c42a4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release_nuget_workflow.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Get version and suffix
3232
run: |
3333
echo %TAG_NAME%
34-
for /f "tokens=1,2 delims=-" %%a in ("%TAG_NAME%") do set version=%%a&set suffix=%%b
34+
for /f "tokens=1,2 delims=-" %a in ("%TAG_NAME%") do set version=%a&set suffix=%b
3535
echo %version%
3636
echo %suffix%
3737
echo ::set-env name=VERSION::%version%
@@ -44,8 +44,8 @@ jobs:
4444
echo ::set-env name=NUSPECPATH::%nuspecpath%
4545
4646
- name: Install NuGet
47-
run: choco install nuget.commandline -y
48-
47+
run: choco install nuget.commandline -y
48+
4949
- name: NuGet restore
5050
run: nuget restore
5151

0 commit comments

Comments
 (0)