Browse Source

github: Remove all 64-bit api-ms-* DLLs

Keir Fraser 3 years ago
parent
commit
263ab02f97
2 changed files with 2 additions and 2 deletions
  1. 1 1
      .github/workflows/ci.yml
  2. 1 1
      .github/workflows/release.yml

+ 1 - 1
.github/workflows/ci.yml

@@ -114,7 +114,7 @@ jobs:
       run: |
         export VER=${{ steps.vars.outputs.sha_short }}
         unzip Greaseweazle-$VER-win.zip
-        find . -name 'api-ms-win-crt-*' | xargs rm
+        find . -name 'api-ms-*' | xargs rm
         find Greaseweazle-$VER/lib -name 'python*.dll' | xargs rm
         find Greaseweazle-$VER/lib -name 'vcruntime140.dll' | xargs rm
         rm Greaseweazle-$VER-win.zip

+ 1 - 1
.github/workflows/release.yml

@@ -93,7 +93,7 @@ jobs:
       run: |
         export VER=${{ steps.vars.outputs.ref }}
         unzip Greaseweazle-$VER-win.zip
-        find . -name 'api-ms-win-crt-*' | xargs rm
+        find . -name 'api-ms-*' | xargs rm
         find Greaseweazle-$VER/lib -name 'python*.dll' | xargs rm
         find Greaseweazle-$VER/lib -name 'vcruntime140.dll' | xargs rm
         rm Greaseweazle-$VER-win.zip