File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515
1616 - name : Create ZIP archive
1717 run : |
18- zip -r IntegrityHelper.zip . -x "*.git*" "*.DS_Store" "*__pycache__*" "*.pyc"
18+ VERSION=${{ github.ref_name }}
19+ ZIP_NAME="IntegrityHelper-${VERSION}.zip"
20+ echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_ENV
21+ zip -r "$ZIP_NAME" . -x "*.git*" "*.DS_Store" "*__pycache__*" "*.pyc"
1922
2023 - name : Create Release
2124 uses : softprops/action-gh-release@v2
3437 - Automatic root solution detection
3538
3639 ## 🚀 Installation
37- 1. Download `IntegrityHelper.zip`
40+ 1. Download `IntegrityHelper-${{ github.ref_name }} .zip`
3841 2. Flash via Magisk Manager/APatch/KernelSU
3942 3. Reboot device
4043 4. Access UI at http://127.0.0.1:8585
4346 Use at your own risk. Always backup before installing third-party modules.
4447 draft : false
4548 prerelease : false
46- files : IntegrityHelper.zip
49+ files : ${{ env.ZIP_NAME }}
You can’t perform that action at this time.
0 commit comments