File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 62
62
- name : Get micropython.exe path
63
63
id : get_path
64
64
run : |
65
- $exePath="micropython=$((msbuild ports\windows\micropython.vcxproj -nologo -v:m -t:ShowTargetPath -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }} -property:PyVariant=${{ matrix.variant }}).Trim())"
66
- echo $exePath
67
- echo $exePath | Set-Content $env:GITHUB_OUTPUT
65
+ $exePath="$(msbuild ports\windows\micropython.vcxproj -nologo -v:m -t:ShowTargetPath -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }} -property:PyVariant=${{ matrix.variant }})"
66
+ echo ("micropython=" + $exePath.Trim()) >> $env:GITHUB_OUTPUT
68
67
- name : Run tests
69
68
id : test
70
69
env :
You can’t perform that action at this time.
0 commit comments