fix: download link

This commit is contained in:
Peter Njeim 2022-05-20 20:54:06 -03:00
parent eeb60535bb
commit 773aed020a

View File

@ -266,18 +266,16 @@ jobs:
shell: python
run: |
import requests
import zipfile
import os
import urllib.request
link = "https://ipfs.infura.io/ipfs/Qmbh8NKAtiaYSgXHj7GTXMcU2AqxCp3jof31Gneffr8XNi"
link = "https://peternjeim.ddns.net/ipfs/Qmbh8NKAtiaYSgXHj7GTXMcU2AqxCp3jof31Gneffr8XNi?filename=gapps.zip"
print(f"downloading link: {link}", flush=True)
out_file = "gapps.zip"
if not os.path.isfile(out_file):
urllib.request.urlretrieve(link, out_file)
requests.get(link)
print("done", flush=True)
- name: Extract GApps and expand images