From fcc9755f7286a72ead742a5158a63592783a572e Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Tue, 17 Dec 2024 22:40:57 +0000 Subject: [PATCH] Create symbol server directory and make it an artifact --- .github/workflows/windows.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 5d3f030abc..f3ecf565a1 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -134,6 +134,10 @@ jobs: mkdir ${{ github.workspace }}/build/iconengines cp plugins/iconengines/qsvgicon.dll ${{ github.workspace }}/build/iconengines + - name: Create symbol server directory structure + run: | + .\CI\Store-Symbols.ps1 + - name: Move pdb files run: | robocopy build pdb *.pdb /MOVE @@ -179,6 +183,12 @@ jobs: name: openmw-windows-${{ inputs.image }}-${{ github.sha }} path: ${{ github.workspace }}/install/* + - name: Store symbol server artifacts + uses: actions/upload-artifact@v4 + with: + name: openmw-windows-${{ inputs.image }}-sym-store-${{ github.sha }} + path: ${{ github.workspace }}/SymStore/* + - name: Add install directory to PATH shell: bash run: echo '${{ github.workspace }}/install' >> ${GITHUB_PATH}