Fix workflows, bump kernel to 6.1.19.

This commit is contained in:
fewtarius 2023-03-14 07:30:17 -04:00
parent 5799bc7a66
commit aa2f8d1fcd
No known key found for this signature in database
GPG key ID: F4AE55305D1B8C1A
3 changed files with 7 additions and 5 deletions

View file

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

View file

@ -21,6 +21,7 @@ on:
env:
BRANCH: main
repo_access: ${{ secrets.REPO_ACCESS }}
jobs:
launch-main-release-if-needed:
@ -33,10 +34,10 @@ 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
id: full_name
run: |

View file

@ -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"