Skip to content

Commit 5296b89

Browse files
committed
Fix Release Notes
1 parent abcdd47 commit 5296b89

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

.github/actions/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ outputs:
3838
description: 'Full kernel version string'
3939
value: ${{ steps.save_metadata.outputs.kernel_version }}
4040
ksu_version:
41-
description: 'KernelSU Next version number'
41+
description: 'KernelSU version number'
4242
value: ${{ steps.save_metadata.outputs.ksu_version }}
4343
ksu_type:
44-
description: 'KernelSU Next version number'
44+
description: 'KernelSU Variant'
4545
value: ${{ steps.save_metadata.outputs.ksu_type }}
4646
susfs_version:
4747
description: 'SUSFS version string'

.github/workflows/build-kernel-release.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ jobs:
535535
REPO_OWNER: ${{ github.repository_owner }}
536536
REPO_NAME: ${{ github.event.repository.name }}
537537
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
538-
RELEASE_NAME: '*TEST BUILD* OnePlus Kernels With KernelSU Next & SUSFS v1.5.12 *TEST BUILD*'
538+
RELEASE_NAME: '*TEST BUILD* OnePlus Kernels With KernelSU Next & SUSFS v2.0.0 *TEST BUILD*'
539539
SUSFS_BASE_VERSION: 'v2.0.0'
540540
steps:
541541
- name: 📥 Checkout code
@@ -663,13 +663,12 @@ jobs:
663663
| Component | Version/Setting |
664664
|-----------|----------------|
665665
EOF
666-
if [ -n ${{ needs.build.outputs.ksun_ver }}]; then
666+
if [ "${{ matrix.ksu_type }}" = "KSUN" ]; then
667667
cat << EOF >> release_notes.md
668668
| **KernelSU Next Branch** | \`$KSUN_BRANCH\` |
669-
| **KernelSU Next Version** | \`${{ needs.build.outputs.ksun_ver }}\` |
669+
| **KernelSU Next Version** | \`${{ needs.build.outputs.ksu_ver }}\` |
670670
EOF
671-
fi
672-
if [ -n ${{ needs.build.outputs.ksu_ver }}]; then
671+
else
673672
cat << EOF >> release_notes.md
674673
| **KernelSU Branch** | \`$KSU_BRANCH\` |
675674
| **KernelSU Version** | \`${{ needs.build.outputs.ksu_ver }}\` |
@@ -697,12 +696,11 @@ jobs:
697696
698697
### 🔐 Root Management
699698
EOF
700-
if [ -n ${{ needs.build.outputs.ksun_ver }}]; then
699+
if [ "${{ matrix.ksu_type }}" = "KSUN" ]; then
701700
cat << EOF >> release_notes.md
702701
- **KernelSU Next** - Next-generation kernel-level root solution
703702
EOF
704-
fi
705-
if [ -n ${{ needs.build.outputs.ksu_ver }}]; then
703+
else
706704
cat << EOF >> release_notes.md
707705
- **KernelSU** - Kernel-level root solution
708706
EOF
@@ -716,13 +714,13 @@ jobs:
716714
- **Baseband Guard (BBG)** - LSM-based baseband security
717715
- **SUSFS Hide Features**:
718716
- ✅ SUS_PATH - Hide suspicious paths
719-
- ✅ SUS_MOUNT - Hide mount points
717+
- ✅ SUS_MOUNT - Hide mount points (No Cli Support)
720718
- ✅ SUS_KSTAT - Spoof kernel statistics
721-
- ✅ TRY_UMOUNT - Auto-unmount detection
722719
- ✅ SPOOF_UNAME - Kernel version spoofing
723720
- ✅ SPOOF_CMDLINE - Boot parameters spoofing
724721
- ✅ OPEN_REDIRECT - File access redirection
725722
- ✅ SUS_MAP - Memory mapping protection
723+
- ✅ AVC_SPOOF - Spoof Procfs avc denial logs
726724
- **Ptrace Leak Fix** - For kernels < 5.16
727725
728726
### 🚀 Performance & Networking
@@ -732,6 +730,7 @@ jobs:
732730
- **TTL Target Support** - Network packet manipulation
733731
- **LTO (Link Time Optimization)** - Optimized binary size and performance
734732
- **ccache-accelerated builds** - Faster compilation times
733+
- **Optimisation Patches** - General Optimisation Patches for overall improvement
735734
736735
### 🔧 System Features
737736
- **TMPFS_XATTR** - Extended attributes for tmpfs (Mountify support)
@@ -744,13 +743,12 @@ jobs:
744743
745744
### Official Manager
746745
EOF
747-
if [ -n ${{ needs.build.outputs.ksun_ver }}]; then
746+
if [ "${{ matrix.ksu_type }}" = "KSUN" ]; then
748747
cat << EOF >> release_notes.md
749748
- **KernelSU Next Manager**
750749
→ [GitHub Release](https://github.com/KernelSU-Next/KernelSU-Next/releases)
751750
EOF
752-
fi
753-
if [ -n ${{ needs.build.outputs.ksu_ver }}]; then
751+
else
754752
cat << EOF >> release_notes.md
755753
- **KernelSU Next Manager**
756754
→ [GitHub Release](https://github.com/KernelSU-Next/KernelSU-Next/releases)
@@ -798,6 +796,7 @@ jobs:
798796
- Added TMPFS_XATTR and TMPFS_POSIX_ACL support for Mountify
799797
- Added Ptrace leak fix for kernels < 5.16
800798
- Compiler optimizations (${{ inputs.optimize_level }})
799+
- Additional General Optimisations
801800
802801
### Previous Releases
803802
See [Releases Page](${{ github.server_url }}/${{ github.repository }}/releases)

0 commit comments

Comments
 (0)