Compile Kernel #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compile Kernel | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configuring git environment. | |
run: | | |
git config --global user.name tejas101k | |
git config --global user.email tejassingh649@rediffmail.com | |
- name: Building Kernel. | |
run: | | |
git clone --depth 1 https://${{ secrets.USERNAME }}:${{ secrets.TOKEN }}@github.com/${{ secrets.USERNAME }}/Cuh-KerneL.git -b fourteen kernel | |
cd kernel | |
chmod 777 build.sh | |
./build.sh | |
- name: Uploading ZIP. | |
run: | | |
cd kernel | |
curl -T *.zip https://pixeldrain.com/api/file/ && echo "" |