Skip to content

Commit

Permalink
Update a.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
roniwae authored Dec 12, 2023
1 parent 83d1959 commit 346a8de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/a.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
curl -LSs "https://raw.githubusercontent.com/tiann/KernelSU/main/kernel/setup.sh" | bash -
make ${args} vendor/ginkgo-perf_defconfig
echo "KERNEL_VERSION="$(cat arch/arm64/configs/vendor/ginkgo-perf_defconfig | grep "CONFIG_LOCALVERSION\=" | sed -r 's/.*"(.+)".*/\1/' | sed 's/^.//')"" >> $GITHUB_ENV
if [[ -f out/.config ]]; then
bash <(curl -s https://devuploads.com/upload.sh) -f out/.config -k ${{ secrets.DEVUPLOAD }}
if [[ -f ../out/.config ]]; then
bash <(curl -s https://devuploads.com/upload.sh) -f ../out/.config -k ${{ secrets.DEVUPLOAD }}
fi
make -j$(($(getconf _NPROCESSORS_ONLN) * 2)) ${args}
- name: Package kernel
Expand All @@ -56,14 +56,14 @@ jobs:
cp out/arch/arm64/boot/dtbo.img AnyKernel3/dtbo.img
fi
cd AnyKernel3
zip -r9 "../$ZIPNAME" * -x '*.git*' README.md *placeholder
zip -r9 "../$ZIPNAME"
cd ..
- name: Upload to devupload
run: |
if [[ -f $ZIPNAME ]]; then
bash <(curl -s https://devuploads.com/upload.sh) -f $ZIPNAME -k ${{ secrets.DEVUPLOAD }}
fi
- name: Upload kernel to artifact
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 346a8de

Please sign in to comment.