Extract and Release #29
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: Extract and Release | |
on: | |
workflow_dispatch: | |
inputs: | |
ROM_URL: | |
description: "ROM_URL" | |
default: "https://googledownloads.cn/dl/android/aosp/redfin-ota-up1a.231105.001.b2-17322169.zip" | |
DEVICE_NAME: | |
description: "DEVICE_NAME" | |
default: "redfin" | |
EXTRACTED_FILES: | |
description: "EXTRACTED_FILES" | |
default: "*.*" | |
jobs: | |
build-and-release: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download file | |
run: curl -LJO ${{ github.event.inputs.ROM_URL }} | |
- name: Extract Payload | |
run: | | |
chmod u+x .github/scripts/android-ota-extractor | |
.github/scripts/android-ota-extractor *.zip | |
echo "ZIP_FILE=$(basename -a *.zip)" >> $GITHUB_ENV | |
echo "ZIP_FILE_SHA256=$(sha256sum *.zip | cut -d' ' -f1)" >> $GITHUB_ENV | |
large_files=$(find . -maxdepth 1 -type f -size +2G) | |
if [ -n "$large_files" ]; then | |
echo -e "\n::warning:: Deleting files larger than 2 GB..." | |
for file in $large_files; do | |
echo "$file ($(du -h "$file" | awk '{print $1}'))" && rm "$file" | |
done | |
fi | |
- name: Upload to Release | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
files: ${{ github.event.inputs.EXTRACTED_FILES }} | |
name: ${{ github.event.inputs.DEVICE_NAME }}-${{ github.run_id }} | |
tag_name: ${{ github.run_id }} | |
body: | | |
Device: ${{ github.event.inputs.DEVICE_NAME }} | |
Filename: [${{ env.ZIP_FILE }}](${{ github.event.inputs.ROM_URL }}) | |
Extracted files: ${{ github.event.inputs.EXTRACTED_FILES }} | |
SHA256: ${{ env.ZIP_FILE_SHA256 }} |