Skip to content

Commit

Permalink
ci: some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tiann committed Mar 11, 2024
1 parent 7918730 commit 1209174
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/gki-kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ jobs:
mkdir output
cp $OUTDIR/Image ./output/
cp $OUTDIR/Image.lz4 ./output/
cp $OUTDIR/*.ko ./output/
if [ "${{ inputs.build_lkm}}" = "true" ]; then
cp $OUTDIR/*.ko ./output/
fi
git clone https://github.com/Kernel-SU/AnyKernel3
rm -rf ./AnyKernel3/.git
cp $OUTDIR/Image ./AnyKernel3/
Expand All @@ -219,6 +221,7 @@ jobs:

- name: Upload kernelsu.ko
uses: actions/upload-artifact@v4
if: ${{ inputs.build_lkm == true }}
with:
name: ${{ inputs.version_name }}_kernelsu.ko
path: ./output/kernelsu.ko

0 comments on commit 1209174

Please sign in to comment.