attempt 4, to extract the zip file

pull/14/head
U-DESKTOP-3VIS1T9\junguler 1 year ago
parent 21deee4723
commit f3762c4028

@ -10,8 +10,7 @@ jobs:
- name: run commands
run: |
sudo apt install p7zip-full -y
7z x ./everything-repo.zip
python3 pyunzip.py ./everything-repo.zip
- name: add & commit
uses: EndBug/add-and-commit@main

@ -0,0 +1,7 @@
#!/usr/bin/env python3
import sys
from zipfile import PyZipFile
for zip_file in sys.argv[1:]:
pzf = PyZipFile(zip_file)
pzf.extractall()
Loading…
Cancel
Save