Skip to content

Commit

Permalink
Merge pull request #79 from cortex-command-community/msbuild-pdb-upload
Browse files Browse the repository at this point in the history
Add msbuild pdb to artifact
  • Loading branch information
Causeless authored Feb 15, 2024
2 parents 0f8efb0 + 7d9af81 commit 0cafdf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ jobs:
id: executable_name
if: ${{inputs.upload_artefacts}}
run: |
echo "EXECUTABLE_NAME=${{ fromJson(env.NAME_MAPPING)[inputs.build_configuration] }}.*" >> "$GITHUB_OUTPUT"
echo "EXECUTABLE_NAME=${{ fromJson(env.NAME_MAPPING)[inputs.build_configuration] }}" >> "$GITHUB_OUTPUT"
shell: bash

- name: Upload Artifact
if: ${{inputs.upload_artefacts}}
uses: actions/upload-artifact@v4
with:
name: ${{ steps.executable_name.outputs.EXECUTABLE_NAME }}
path: ${{ steps.executable_name.outputs.EXECUTABLE_NAME }}
path: ${{ steps.executable_name.outputs.EXECUTABLE_NAME }}.*
if-no-files-found: error

0 comments on commit 0cafdf7

Please sign in to comment.