Update CI.yml

This commit is contained in:
Aditya Garg 2022-11-07 16:31:35 +05:30 committed by GitHub
parent 1624a94fcf
commit 29de41b594
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 33 additions and 0 deletions

View File

@ -5,6 +5,39 @@ on:
[push]
jobs:
Kinetic:
runs-on: ubuntu-22.04
steps:
- name: 'Checkout Jammy Repo'
uses: actions/checkout@v3
- name: Get version
run: |
VERSION=$(grep ^KERNEL_VERSION build.sh | head -n1| cut -d = -f2)
REL=$(grep "PKGREL=\d*" build.sh | cut -d = -f2)
echo "ver=${VERSION}" >> $GITHUB_ENV
echo "release=${REL}" >> $GITHUB_ENV
- name: 'Checkout kinetic Repo'
uses: actions/checkout@v3
with:
ref: kinetic
persist-credentials: false
- name: 'Push new version to kinetic'
id: publish
run: |
sed -i "s/KERNEL_VERSION=6.*/KERNEL_VERSION=${{ env.ver }}/g" build.sh
sed -i "s/PKGREL=.*/PKGREL=${{ env.release }}/g" build.sh
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -m "${{ env.ver }}-${{ env.release }}" -a
- name: Push changes to the repo
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.PAT }}
branch: kinetic
Kernel:
runs-on: ubuntu-22.04
steps: