Skip to content

Commit

Permalink
Fix PDB path in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmacha committed May 18, 2024
1 parent dece4d8 commit 7f5c681
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cmake-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 7f5c681

Please sign in to comment.