Skip to content

Commit 57a6a64

Browse files
committed
temp reordering to fix bad format string
1 parent 1496969 commit 57a6a64

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/msbuild.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ jobs:
4545
steps:
4646
- uses: actions/checkout@v3
4747

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+
4855
- name: Add MSBuild to PATH
4956
uses: microsoft/setup-msbuild@v1
5057

@@ -55,10 +62,6 @@ jobs:
5562
run: msbuild /m /p:Configuration="${{inputs.build_configuration}}" ${{env.SOLUTION_FILE_PATH}}
5663

5764

58-
- id: executable_name
59-
if: ${{inputs.upload_artefacts}}
60-
run: |
61-
echo "EXECUTABLE_NAME=${{ fromJson(env.NAME_MAPPING)[inputs.build_configuration] }}" >> "$GITHUB_OUTPUT"
6265

6366
- name: Upload Artifact
6467
if: ${{inputs.upload_artefacts}}

0 commit comments

Comments
 (0)