Compile Kernel #12
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 Charsi-Tejas | |
git config --global user.email [email protected] | |
- name: Building Kernel. | |
run: | | |
git clone --depth 1 https://${{ secrets.USERNAME }}:${{ secrets.TOKEN }}@github.com/${{ secrets.USERNAME }}/Cuh-KerneL.git -b thirteen kernel | |
cd kernel | |
chmod 777 build.sh | |
./build.sh |