Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

πŸ“¦ Kernel Rebuild - KDS Fix

Compare
Choose a tag to compare
@github-actions github-actions released this 02 Jun 23:23
· 120 commits to main since this release

πŸ›ˆ General Changes since the last release

diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml
index 02941a8..d3b5784 100644
--- a/.github/workflows/kernel.yml
+++ b/.github/workflows/kernel.yml
@@ -21,6 +21,10 @@ jobs:
           echo 'DIFF<<EOF' >> $GITHUB_ENV
           git diff HEAD^..HEAD >> $GITHUB_ENV
           echo 'EOF' >> $GITHUB_ENV
+      - name: Generate release tag
+        id: tag
+        run: |
+          echo "::set-output name=release_tag::KernelDeliverySystem$(date +"%Y.%m.%d_%H-%M")"
       - name: Running build.sh
         run: cd kernel; bash build.sh chromeos-5.10;
       # - name: Upload Artifacts
@@ -33,6 +37,7 @@ jobs:
       - name: Release kernel and bzImage
         uses: softprops/action-gh-release@v1
         with:
+          tag_name: ${{ steps.tag.outputs.release_tag }}
           name: πŸ“¦ Kernel Rebuild - ${{ github.event.head_commit.message }}
           body: |
             πŸ›ˆ General Changes since the last release

🚚 Kernel Delivery System - Triggered by 9a5a40a at 2022-06-02T03:33:45Z