Parcourir la source

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 il y a 8 mois
Parent
commit
af26b22783
2 fichiers modifiés avec 7 ajouts et 2 suppressions
  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"
+    ]
+}