From 7f5c68194bc7a6de6178143ef023dd441a37a783 Mon Sep 17 00:00:00 2001 From: Piotr Macha Date: Sat, 18 May 2024 18:19:57 +0200 Subject: [PATCH] Fix PDB path in GitHub Actions --- .github/workflows/cmake-build.yml | 2 +- .github/workflows/cmake-release.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake-build.yml b/.github/workflows/cmake-build.yml index 9c11390..22b6cc2 100644 --- a/.github/workflows/cmake-build.yml +++ b/.github/workflows/cmake-build.yml @@ -38,7 +38,7 @@ jobs: name: dll-pdb-release path: | out/install/x86-release/bin/*.dll - out/build/x86-release/bin/*.pdb + out/build/x86-release/*.pdb - name: Archive VDF uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/cmake-release.yml b/.github/workflows/cmake-release.yml index 5310a8a..0d8b541 100644 --- a/.github/workflows/cmake-release.yml +++ b/.github/workflows/cmake-release.yml @@ -36,7 +36,7 @@ jobs: name: dll-pdb-release path: | out/install/x86-release/bin/*.dll - out/build/x86-release/bin/*.pdb + out/build/x86-release/*.pdb - name: Archive VDF uses: actions/upload-artifact@v4 with: @@ -57,7 +57,7 @@ jobs: uses: actions/download-artifact@v4 with: name: dll-pdb-release - path: out/build/x86-release/bin/ + path: out/build/x86-release/ - name: Download VDF uses: actions/download-artifact@v4 with: @@ -66,7 +66,7 @@ jobs: - name: Zip dll-release run: Compress-Archive out/install/x86-release/bin/* dll-release.zip - name: Copy PDB - run: Copy-Item out/build/x86-release/bin/*.pdb out/install/x86-release/bin/ + run: Copy-Item out/build/x86-release/*.pdb out/install/x86-release/bin/ - name: Zip dll-pdb-release run: Compress-Archive out/install/x86-release/bin/* dll-pdb-release.zip - name: Create Release