Update CI.yml

This commit is contained in:
Aditya Garg 2022-11-07 16:12:54 +05:30 committed by GitHub
parent 3e30e3a70c
commit df36be856d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ jobs:
VER=$(egrep ^KERNEL_VERSION build.sh|cut -d= -f2)
REL=$(grep "PKGREL=\d*" build.sh | cut -d = -f2)
echo Version is $VER
echo "::set-output name=tag::${VER}-${REL}"
echo "tag=${VER}-${REL}" >> $GITHUB_OUTPUT
- name: Upload iso artifact
uses: actions/upload-artifact@v2
@ -45,7 +45,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: ${{ github.workspace }}/*.iso
tag_name: v22.04-${{ steps.tag.outputs.tag }}
tag_name: ${{ steps.tag.outputs.tag }}
body_path: ${{ github.workspace }}/.github/workflows/instructions.txt
draft: false
prerelease: false