update ios version; set timeout for workflow; delete pycache dir.

This commit is contained in:
Il'ya (Marshal) 2022-05-09 12:26:51 +02:00
parent 0c6cce1657
commit fa14282533
2 changed files with 3 additions and 1 deletions

View file

@ -12,6 +12,7 @@ jobs:
fetch_new_content: fetch_new_content:
name: Make files tree name: Make files tree
runs-on: macos-10.15 runs-on: macos-10.15
timeout-minutes: 10
steps: steps:
@ -44,6 +45,7 @@ jobs:
git checkout data git checkout data
rm -rf data rm -rf data
rm -rf __pycache__
mv data_ci data mv data_ci data
git config --global user.email "github-action@users.noreply.github.com" git config --global user.email "github-action@users.noreply.github.com"

View file

@ -191,7 +191,7 @@ async def download_telegram_macos_beta_and_extract_resources(session: aiohttp.Cl
async def download_telegram_ios_beta_and_extract_resources(session: aiohttp.ClientSession): async def download_telegram_ios_beta_and_extract_resources(session: aiohttp.ClientSession):
# TODO fetch version automatically # TODO fetch version automatically
# ref: https://docs.github.com/en/rest/releases/releases#get-the-latest-release # ref: https://docs.github.com/en/rest/releases/releases#get-the-latest-release
version = '8.6.22933' version = '8.6.22968'
download_url = f'https://github.com/MarshalX/decrypted-telegram-ios/releases/download/{version}/Telegram-{version}.ipa' download_url = f'https://github.com/MarshalX/decrypted-telegram-ios/releases/download/{version}/Telegram-{version}.ipa'
tool_download_url = 'https://github.com/MarshalX/acextract/releases/download/3.0/acextract' tool_download_url = 'https://github.com/MarshalX/acextract/releases/download/3.0/acextract'