Update Build.yml #5
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
on: | |
push | |
jobs: | |
run_build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./ | |
steps: | |
- name: Check out the repository to the runner | |
uses: actions/checkout@v4 | |
- name: make script file executable | |
run: chmod +x build_kernel.sh | |
- name: Run script file | |
run: ./build_kernel.sh |