From b325817a5ee251d0a429337e8016fd430cbb832a Mon Sep 17 00:00:00 2001 From: Aditya Garg <85610623+AdityaGarg8@users.noreply.github.com> Date: Fri, 21 Oct 2022 22:42:37 +0530 Subject: [PATCH] Update CI.yml --- .github/workflows/CI.yml | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index eff9072..b498b32 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -50,7 +50,40 @@ jobs: prerelease: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - + + Safe-graphics: + needs: [Kernel] + 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 jammy-16,4 Repo' + uses: actions/checkout@v3 + with: + ref: jammy-16,4 + + - name: 'Push new version to jammy-16,4' + id: publish + run: | + sed -i "s/KERNEL_VERSION=.*/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.GITHUB_TOKEN }} + branch: jammy-16,4 + ISO: needs: [Kernel] runs-on: ubuntu-22.04