File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 45
45
steps :
46
46
- uses : actions/checkout@v3
47
47
48
- - name : Determine executable name
49
- id : executable_name
50
- if : ${{inputs.upload_artefacts}}
51
- run : |
52
- echo 'EXECUTABLE_NAME=${{ fromJson(env.NAME_MAPPING)[inputs.build_configuration] }}' >> "$GITHUB_OUTPUT"
53
-
54
-
55
48
- name : Add MSBuild to PATH
56
49
uses : microsoft/setup-msbuild@v1
57
50
61
54
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
62
55
run : msbuild /m /p:Configuration="${{inputs.build_configuration}}" ${{env.SOLUTION_FILE_PATH}}
63
56
64
-
57
+ - name : Determine executable name
58
+ id : executable_name
59
+ if : ${{inputs.upload_artefacts}}
60
+ run : |
61
+ echo 'EXECUTABLE_NAME=${{ fromJson(env.NAME_MAPPING)[inputs.build_configuration] }}' >> "$GITHUB_OUTPUT"
65
62
66
63
- name : Upload Artifact
67
64
if : ${{inputs.upload_artefacts}}
You can’t perform that action at this time.
0 commit comments