Skip to content

Commit

Permalink
Fixed syntax error caused by extra forward slash
Browse files Browse the repository at this point in the history
  • Loading branch information
Arlodotexe committed Aug 28, 2024
1 parent b672ac2 commit 2a2a2d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,14 +224,14 @@ jobs:
if: always()
working-directory: ${{ github.workspace }}
run: |
echo "DUMP_FILE=$(Get-ChildItem ${{ env.PROCDUMP_PATH }}/*.dmp -ErrorAction SilentlyContinue)" >> $env:GITHUB_OUTPUT
echo "DUMP_FILE=$(Get-ChildItem ${{ env.PROCDUMP_PATH }}*.dmp -ErrorAction SilentlyContinue)" >> $env:GITHUB_OUTPUT
- name: Artifact - Process Dumps
uses: actions/upload-artifact@v4
if: ${{ (env.ENABLE_DIAGNOSTICS == 'true' || env.COREHOST_TRACE != '') && always() }}
with:
name: CrashDumps-${{ matrix.multitarget }}-winui${{ matrix.winui }}
path: ${{ env.PROCDUMP_PATH }}/*.dmp
path: ${{ env.PROCDUMP_PATH }}*.dmp

- name: Artifact - vstest-diagnostic-log
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 2a2a2d3

Please sign in to comment.