浏览代码

ci(github-actions): update artifact download paths in workflow

Update the download paths for artifacts in the GitHub Actions workflow to include specific subdirectories for each artifact type. This ensures better organization of downloaded artifacts.
TheWildJames 8 月之前
父节点
当前提交
af26b22783
共有 2 个文件被更改,包括 7 次插入2 次删除
  1. 2 2
      .github/workflows/main.yml
  2. 5 0
      .vscode/settings.json

+ 2 - 2
.github/workflows/main.yml

@@ -384,13 +384,13 @@ jobs:
     - name: Download TheWildJames Artifacts
       uses: actions/download-artifact@v5
       with:
-        path: ./downloaded-artifacts
+        path: ./downloaded-artifacts/6.1.145-android14-2025-09-TheWildJames-AnyKernel3
         pattern: '6.1.145-android14-2025-09-TheWildJames-AnyKernel3'
 
     - name: Download Normal Artifacts
       uses: actions/download-artifact@v5
       with:
-        path: ./downloaded-artifacts
+        path: ./downloaded-artifacts/6.1.145-android14-2025-09-Normal-AnyKernel3
         pattern: '6.1.145-android14-2025-09-Normal-AnyKernel3'
 
     - name: Setup Release Assets

+ 5 - 0
.vscode/settings.json

@@ -0,0 +1,5 @@
+{
+    "github-actions.workflows.pinned.workflows": [
+        ".github/workflows/main.yml"
+    ]
+}