Patch Image via URL #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Patch Image via URL | |
on: | |
workflow_dispatch: | |
inputs: | |
image_url: | |
description: 'Recovery Image URL' | |
default: 'https://transfer.sh/<file-id>/<file>.img' | |
required: true | |
type: string | |
jobs: | |
process: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Gain file access | |
uses: actions/[email protected] | |
- name: Fetch necessary packages | |
run: | | |
sudo apt install git wget lz4 tar openssl python3 -y | |
- name: Download recovery image from URL | |
run: | | |
wget ${{github.event.inputs.image_url}} | |
- name: Start patching script | |
run: | | |
chmod a+x magiskboot | |
chmod a+x patcher-minimal | |
./patcher-minimal | |
- name: Upload patched image files | |
uses: actions/upload-artifact@v4 | |
with: | |
path: /home/runner/work/fastboot-patcher/fastboot-patcher/output/*.* | |
name: Patched Recovery Image Bundle | |
if-no-files-found: error | |
retention-days: 15 | |
compression-level: 0 | |
overwrite: true | |
- name: Upload keys for patched image | |
uses: actions/upload-artifact@v4 | |
with: | |
path: /home/runner/work/fastboot-patcher/fastboot-patcher/keys/*.* | |
name: Patched Image Key Bundle | |
if-no-files-found: error | |
retention-days: 15 | |
compression-level: 0 | |
overwrite: true |