We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b0e803 commit 698aae9Copy full SHA for 698aae9
.github/workflows/build.yaml
@@ -0,0 +1,27 @@
1
+name: WSL2 Kernel
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - linux-msft-wsl-6.6.y
7
+ workflow_dispatch:
8
9
+jobs:
10
+ WSL2_Kernel_Build:
11
+ name: Build kernel
12
+ runs-on: self-hosted
13
+ steps:
14
15
+ - name: Checkout Repository
16
+ uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 1
19
20
+ - name: Build Kernel
21
+ run: |
22
+ ./build.sh
23
+ echo "RELEASE_NAME=WSL2-Linux-v6.6.$(grep "^SUBLEVEL =" Makefile | awk '{print $3}')-$(date +"%Y%m%d")" >> $GITHUB_ENV
24
25
+ - name: Creating release
26
27
+ gh release create $RELEASE_NAME --title "$RELEASE_NAME" --notes "" out/${RELEASE_NAME}.zip
0 commit comments