From a490b58fb8f992c6ed4344ce62470203fb610f12 Mon Sep 17 00:00:00 2001 From: Aditya Garg Date: Sun, 16 Jul 2023 00:52:54 +0530 Subject: [PATCH] Update kubuntubranch --- .github/workflows/CI.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b9047c3..337a2cb 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -38,6 +38,39 @@ jobs: github_token: ${{ secrets.PAT }} branch: mainline + Kubuntu: + 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 kubuntuJammy Repo' + uses: actions/checkout@v3 + with: + ref: mainline + persist-credentials: false + + - name: 'Push new version to kubuntuJammy' + 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: kubuntuJammy + ISO: runs-on: ubuntu-22.04 steps: