Skip to content

Commit

Permalink
Fix more variables
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaGarg8 authored Jun 29, 2024
1 parent 87a2ec4 commit dff7c8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
id: tag
run: |
VER=$(egrep ^KERNEL_VERSION build.sh|cut -d= -f2)
MINTVER=$(egrep ^KERNEL_VERSION build.sh|cut -d= -f2)
MINTVER=$(egrep ^MINT_VERSION build.sh|cut -d= -f2)
REL=$(grep "PKGREL=\d*" build.sh | cut -d = -f2)
echo Version is $VER
echo "kver=${VER}" >> $GITHUB_ENV
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
id: tag
run: |
VER=$(egrep ^KERNEL_VERSION build.sh|cut -d= -f2)
MINTVER=$(egrep ^KERNEL_VERSION build.sh|cut -d= -f2)
MINTVER=$(egrep ^MINT_VERSION build.sh|cut -d= -f2)
REL=$(grep "PKGREL=\d*" build.sh | cut -d = -f2)
echo Version is $VER
echo "kver=${VER}" >> $GITHUB_ENV
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
id: tag
run: |
VER=$(egrep ^KERNEL_VERSION build.sh|cut -d= -f2)
MINTVER=$(egrep ^KERNEL_VERSION build.sh|cut -d= -f2)
MINTVER=$(egrep ^MINT_VERSION build.sh|cut -d= -f2)
REL=$(grep "PKGREL=\d*" build.sh | cut -d = -f2)
echo Version is $VER
echo "kver=${VER}" >> $GITHUB_ENV
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
- name: Generate Variables
run: |
VER=$(egrep ^KERNEL_VERSION build.sh|cut -d= -f2)
MINTVER=$(egrep ^KERNEL_VERSION build.sh|cut -d= -f2)
MINTVER=$(egrep ^MINT_VERSION build.sh|cut -d= -f2)
REL=$(grep "PKGREL=\d*" build.sh | cut -d = -f2)
echo Version is $VER
echo "kver=${VER}" >> $GITHUB_ENV
Expand Down

0 comments on commit dff7c8f

Please sign in to comment.