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.
2 parents 0f8efb0 + 7d9af81 commit 0cafdf7Copy full SHA for 0cafdf7
.github/workflows/msbuild.yml
@@ -76,13 +76,13 @@ jobs:
76
id: executable_name
77
if: ${{inputs.upload_artefacts}}
78
run: |
79
- echo "EXECUTABLE_NAME=${{ fromJson(env.NAME_MAPPING)[inputs.build_configuration] }}.*" >> "$GITHUB_OUTPUT"
+ echo "EXECUTABLE_NAME=${{ fromJson(env.NAME_MAPPING)[inputs.build_configuration] }}" >> "$GITHUB_OUTPUT"
80
shell: bash
81
82
- name: Upload Artifact
83
84
uses: actions/upload-artifact@v4
85
with:
86
name: ${{ steps.executable_name.outputs.EXECUTABLE_NAME }}
87
- path: ${{ steps.executable_name.outputs.EXECUTABLE_NAME }}
+ path: ${{ steps.executable_name.outputs.EXECUTABLE_NAME }}.*
88
if-no-files-found: error
0 commit comments