pkg: Allow triggering a CI run manually

This will only build the kernel, sign it and upload it as an artifact.
Useful for testing changes.
This commit is contained in:
Dorian Stoll 2023-07-24 14:58:38 +02:00
parent ffa8b7c606
commit 30c9a9caa5
No known key found for this signature in database
GPG key ID: F1DACD02C619442A
4 changed files with 16 additions and 0 deletions

View file

@ -7,6 +7,9 @@ on:
push:
tags:
- 'arch-*'
repository_dispatch:
workflow_dispatch:
jobs:
build:
@ -68,6 +71,7 @@ jobs:
release:
name: Publish release
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
needs: [build]
runs-on: ubuntu-latest
steps:

View file

@ -8,6 +8,9 @@ on:
tags:
- 'debian-*'
repository_dispatch:
workflow_dispatch:
jobs:
build:
name: Build Kernel
@ -68,6 +71,7 @@ jobs:
release:
name: Publish release
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
needs: [build]
runs-on: ubuntu-latest
steps:

View file

@ -9,6 +9,9 @@ on:
tags:
- 'fedora-37-*'
repository_dispatch:
workflow_dispatch:
jobs:
build:
name: Build Kernel
@ -69,6 +72,7 @@ jobs:
release:
name: Publish release
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
needs: [build]
runs-on: ubuntu-latest
steps:

View file

@ -9,6 +9,9 @@ on:
tags:
- 'fedora-38-*'
repository_dispatch:
workflow_dispatch:
jobs:
build:
name: Build Kernel
@ -69,6 +72,7 @@ jobs:
release:
name: Publish release
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
needs: [build]
runs-on: ubuntu-latest
steps: