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 1496969 commit 57a6a64Copy full SHA for 57a6a64
.github/workflows/msbuild.yml
@@ -45,6 +45,13 @@ jobs:
45
steps:
46
- uses: actions/checkout@v3
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
- name: Add MSBuild to PATH
56
uses: microsoft/setup-msbuild@v1
57
@@ -55,10 +62,6 @@ jobs:
62
run: msbuild /m /p:Configuration="${{inputs.build_configuration}}" ${{env.SOLUTION_FILE_PATH}}
63
64
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
66
- name: Upload Artifact
67
if: ${{inputs.upload_artefacts}}
0 commit comments