Skip to content

Update runner

Update runner #66

Workflow file for this run

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 }}