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 087599d commit a21937bCopy full SHA for a21937b
.github/workflows/windows.yml
@@ -34,13 +34,14 @@ jobs:
34
set year=%datetime:~0,4%
35
set month=%datetime:~4,2%
36
set day=%datetime:~6,2%
37
- set current_date=%year%%month%%day% >> $env::GITHUB_ENV
+ echo current_date=%year%%month%%day% >> $GITHUB_ENV
38
39
echo Create git hash
40
- for /f %%i in ('git -C %GITHUB_WORKSPACE% rev-parse --short HEAD') do set git_hash=%%i >> $env::GITHUB_ENV
+ for /f %%i in ('git -C %GITHUB_WORKSPACE% rev-parse --short HEAD') do set git_hash=%%i
41
+ echo git_hash=%git_hash% >> $GITHUB_ENV
42
43
echo Create version
- set file_version=%current_date%_%git_hash% >> $env::GITHUB_ENV
44
+ echo file_version=%current_date%_%git_hash% >> $GITHUB_ENV
45
46
echo Create a build directory
47
cd ..\
0 commit comments