From 29de41b594a8b073dc558f4ceefd4eaaf7bf8c28 Mon Sep 17 00:00:00 2001 From: Aditya Garg Date: Mon, 7 Nov 2022 16:31:35 +0530 Subject: [PATCH] Update CI.yml --- .github/workflows/CI.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 30e1192..f445bd5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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: