浏览代码

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

Keir Fraser 3 年之前
父节点
当前提交
263ab02f97
共有 2 个文件被更改,包括 2 次插入2 次删除
  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