Explorar el Código

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 hace 8 meses
padre
commit
af26b22783
Se han modificado 2 ficheros con 7 adiciones y 2 borrados
  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"
+    ]
+}