Fix workflows, bump kernel to 6.1.19.
This commit is contained in:
parent
5799bc7a66
commit
aa2f8d1fcd
3 changed files with 7 additions and 5 deletions
3
.github/workflows/release-dev.yaml
vendored
3
.github/workflows/release-dev.yaml
vendored
|
@ -11,6 +11,7 @@ on:
|
|||
workflow_dispatch:
|
||||
env:
|
||||
BRANCH: dev
|
||||
repo_access: ${{ secrets.REPO_ACCESS }}
|
||||
|
||||
jobs:
|
||||
launch-dev-release:
|
||||
|
@ -27,7 +28,7 @@ jobs:
|
|||
ref: "${{env.BRANCH}}"
|
||||
|
||||
- name: only run if a repo key exists
|
||||
if: ${{ secrets.REPO_ACCESS = '' }}
|
||||
if: ${{ env.repo_access = '' }}
|
||||
run: exit 0
|
||||
|
||||
- name: repository full name
|
||||
|
|
5
.github/workflows/release-main.yaml
vendored
5
.github/workflows/release-main.yaml
vendored
|
@ -21,6 +21,7 @@ on:
|
|||
|
||||
env:
|
||||
BRANCH: main
|
||||
repo_access: ${{ secrets.REPO_ACCESS }}
|
||||
|
||||
jobs:
|
||||
launch-main-release-if-needed:
|
||||
|
@ -33,8 +34,8 @@ jobs:
|
|||
fetch-depth: 0
|
||||
ref: "${{env.BRANCH}}"
|
||||
|
||||
- name: only run on the primary repository
|
||||
if: ${{ !startsWith(github.repository_owner, 'JustEnoughLinuxOS') }}
|
||||
- name: only run if a repo key exists
|
||||
if: ${{ env.repo_access = '' }}
|
||||
run: exit 0
|
||||
|
||||
- name: repository full name
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
PKG_NAME="linux"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_VERSION="6.1.16"
|
||||
PKG_VERSION="6.1.19"
|
||||
PKG_URL="https://www.kernel.org/pub/linux/kernel/v6.x/${PKG_NAME}-${PKG_VERSION}.tar.xz"
|
||||
PKG_SITE="http://www.kernel.org"
|
||||
PKG_DEPENDS_HOST="ccache:host rsync:host openssl:host"
|
||||
|
|
Loading…
Reference in a new issue