multi-kernel, cross-compiling, bash based Hook & (default+foreign) ke… #19
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: For each Kernel commit | |
on: | |
push: | |
paths: | |
- kernel/** | |
- "!kernel/README.md" | |
branches: | |
- "**" | |
jobs: | |
kernel-publish: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Login to quay.io | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_PASSWORD }} | |
- run: make -C kernel build |