Skip to content

Commit

Permalink
Fix file removal in build script
Browse files Browse the repository at this point in the history
  • Loading branch information
savaughn committed May 17, 2024
1 parent f37a5cf commit 64a16a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
cp -r build_dynamic/lib/libpksav.dll build/release
cp -r build_static/include/pksav/config.h build/release/include/pksav/
cp -r build_static/include/pksav/version.h build/release/include/pksav/
rm -rf build/release/include/pksav/config.h.in
rm -rf build/release/include/pksav/version.h.in
rm build/release/include/pksav/config.h.in
rm build/release/include/pksav/version.h.in
cp -r include/* build/release/include
- name: Publish Build Artifacts
Expand Down

0 comments on commit 64a16a2

Please sign in to comment.