Files
LukeeGD cff0c08340 Some changes
- dont use --no-rsep for i 16.x restores
- dont do alloc8 install if restore fails/errors out
- update ipwndfu. do not usb reset on execute on intel macs

some changes for #773
2025-06-25 01:10:31 +08:00

97 lines
4.1 KiB
YAML

name: Create zip files
on:
push:
branches:
- main
jobs:
create-zip-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create name version env
run: |
sudo timedatectl set-timezone Asia/Singapore
echo "DATE=$(date +%y.%m)" >> $GITHUB_ENV
echo "COUNT=$(git rev-list --count HEAD --since=$(date --date="$(date +%Y-%m-01) - 1 second" +%s) | xargs printf "%02d")" >> $GITHUB_ENV
echo "SHA_SHORT=$(echo ${{ github.sha }} | cut -c -7)" >> $GITHUB_ENV
echo "DATE_OLD=$(date +%Y-%m-%d)" >> $GITHUB_ENV
- name: Create git hash and version
run: |
echo "${{ env.SHA_SHORT }}" | tee ./resources/git_hash
echo "v${{ env.DATE }}.${{ env.COUNT }}" | tee ./resources/version
- name: Download some files
run: |
mkdir -p saved/firmware
pushd resources
curl -L https://github.com/LukeZGD/ipwndfu/archive/52fdaa27fc7c12cdca74bcaa344a91726be46cce.zip -o ipwndfu_python3.zip
curl -L https://github.com/LukeZGD/ipwndfu/archive/21913d43a66d8a4b292efc9a8c87e26cde06ea36.zip -o ipwndfu.zip
curl -L https://github.com/LukeZGD/Legacy-iOS-Kit-Keys/archive/refs/heads/master.zip -o keys.zip
unzip keys.zip -d .
cp -r Legacy-iOS-Kit-Keys-master/* ../saved/firmware
unzip ipwndfu_python3.zip -d .
mv ipwndfu*/ ../saved/ipwndfu_python3
unzip ipwndfu.zip -d .
mv ipwndfu*/ ../saved/ipwndfu
rm -rf Legacy-iOS-Kit-Keys-master/ ipwndfu*.zip keys.zip
echo "5c98881c45d7b829579af6783bc9568cf5e426d7" > ../saved/ipwndfu_python3/sha1check
echo "cd5d889403705af058816fe0563111ce5adf729b" > ../saved/ipwndfu/sha1check
popd
- name: Move linux binaries
run: |
mkdir -p ./exclude/bin
cp -R ./bin/* ./exclude/bin
rm -r ./bin/linux
- name: Zip macos files
run: zip -r ${{ github.event.repository.name }}_macos_v${{ env.DATE }}.${{ env.COUNT }}.zip bin/ LICENSE resources/ restore.sh README.md saved/
- name: Move macos binaries
run: |
rm -r ./bin/macos
mkdir ./bin/linux
cp -R ./exclude/bin/linux/x86_64 ./bin/linux
- name: Zip linux x86_64 files
run: zip -r ${{ github.event.repository.name }}_linux_x86_64_v${{ env.DATE }}.${{ env.COUNT }}.zip bin/ LICENSE resources/ restore.sh README.md saved/
- name: Move linux x86_64 binaries and other files
run: |
rm -r ./bin/linux/x86_64
cp -R ./exclude/bin/linux/arm64 ./bin/linux
- name: Zip linux arm64 files
run: zip -r ${{ github.event.repository.name }}_linux_arm64_v${{ env.DATE }}.${{ env.COUNT }}.zip bin/ LICENSE resources/ restore.sh README.md saved/
- name: Move linux binaries and other files
run: rm -r ./bin/linux
- name: Copy exclude files back
run: cp -R ./exclude/bin/* ./bin
- name: Zip complete files
run: zip -r ${{ github.event.repository.name }}_complete_v${{ env.DATE }}.${{ env.COUNT }}.zip bin/ LICENSE resources/ restore.cmd restore.sh README.md saved/
- name: Create this file to get latest git hash
run: |
echo "This file is for version checking purposes only. Get the correct zip file for your platform in the release assets." > README.txt
zip -r git-hash_${{ env.DATE_OLD }}-${{ env.SHA_SHORT }}.zip README.txt
- name: Update latest release
uses: pyTooling/Actions/releaser@main
with:
tag: latest
rm: true
token: ${{ secrets.GITHUB_TOKEN }}
files: |
git-hash_${{ env.DATE_OLD }}-${{ env.SHA_SHORT }}.zip
${{ github.event.repository.name }}_complete_v${{ env.DATE }}.${{ env.COUNT }}.zip
${{ github.event.repository.name }}_macos_v${{ env.DATE }}.${{ env.COUNT }}.zip
${{ github.event.repository.name }}_linux_arm64_v${{ env.DATE }}.${{ env.COUNT }}.zip
${{ github.event.repository.name }}_linux_x86_64_v${{ env.DATE }}.${{ env.COUNT }}.zip