Przeglądaj źródła

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 miesięcy temu
rodzic
commit
af26b22783
2 zmienionych plików z 7 dodań i 2 usunięć
  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"
+    ]
+}