I have this step on windows-2016
- name: get version
run: |
set version=%GITHUB_REF:*tags/=%
echo ::set-output name=version::%version%
It works perfectly at least until 10 days ago. I had output like this
::set-output name=version::v2.4.17
Now, the same script outputs two lines and not only one and the variable value is wrong
::set-output
name=version::%version%
What changed or what do I do wrong?