Update runner #66
This file contains hidden or 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: Run on runner | |
on: | |
push: | |
paths: | |
- "runner" | |
jobs: | |
process-config: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: install deps Download, extract, and build kernel | |
run: | | |
bash build.sh | |
version=$(cat ver) | |
echo "VERSION=${version}" >> $GITHUB_ENV | |
- name: Create a new GitHub release and tag | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: ${{ env.VERSION }} | |
name: "Release ${{ env.VERSION }}" | |
body: "This release includes the latest build stable kernel." | |
files: | | |
kext/arch/x86/boot/bzImage | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |