Skip to content

Commit 0cafdf7

Browse files
authored
Merge pull request #79 from cortex-command-community/msbuild-pdb-upload
Add msbuild pdb to artifact
2 parents 0f8efb0 + 7d9af81 commit 0cafdf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/msbuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ jobs:
7676
id: executable_name
7777
if: ${{inputs.upload_artefacts}}
7878
run: |
79-
echo "EXECUTABLE_NAME=${{ fromJson(env.NAME_MAPPING)[inputs.build_configuration] }}.*" >> "$GITHUB_OUTPUT"
79+
echo "EXECUTABLE_NAME=${{ fromJson(env.NAME_MAPPING)[inputs.build_configuration] }}" >> "$GITHUB_OUTPUT"
8080
shell: bash
8181

8282
- name: Upload Artifact
8383
if: ${{inputs.upload_artefacts}}
8484
uses: actions/upload-artifact@v4
8585
with:
8686
name: ${{ steps.executable_name.outputs.EXECUTABLE_NAME }}
87-
path: ${{ steps.executable_name.outputs.EXECUTABLE_NAME }}
87+
path: ${{ steps.executable_name.outputs.EXECUTABLE_NAME }}.*
8888
if-no-files-found: error

0 commit comments

Comments
 (0)