Skip to content

Commit 6357713

Browse files
committed
Make ZIP filename dynamic based on version
- ZIP file now named: IntegrityHelper-v1.0.zip - Release notes updated to reference correct filename - Each version gets its own unique ZIP file
1 parent 6a36db6 commit 6357713

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ jobs:
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
@@ -34,7 +37,7 @@ jobs:
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
@@ -43,4 +46,4 @@ jobs:
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 }}

0 commit comments

Comments
 (0)