Parcourir la source

Enhance build workflow to handle tar.xz files

added cd to extract tar file job
jimsterino98 il y a 9 mois
Parent
commit
9314b844a0
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      .github/workflows/build.yml

+ 1 - 0
.github/workflows/build.yml

@@ -63,6 +63,7 @@ jobs:
 
       - name: Extract all tar.xz files and delete them
         run: |
+         cd "$CONFIG"
          find . -type f -name '*.tar.xz' -print0 | while IFS= read -r -d '' file; do
           echo "Extracting $file"
           tar -xf "$file"