Simple script and config (type-safe) for building custom Linux kernels for Firecracker MicroVMs
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: upload sha256 file

+4 -1
+4 -1
.github/workflows/ci.yml
··· 29 29 - name: Build 30 30 run: | 31 31 ./build.sh $TAG 32 + sha256 linux-stable/vmlinux-${{ env.VERSION }} > linux-stable/vmlinux-${{ env.VERSION }}.sha256 32 33 33 34 - name: Upload artifact 34 35 uses: softprops/action-gh-release@v2 35 36 with: 36 - files: linux-stable/vmlinux-${{ env.VERSION }} 37 + files: | 38 + linux-stable/vmlinux-${{ env.VERSION }} 39 + linux-stable/vmlinux-${{ env.VERSION }}.sha256 37 40 env: 38 41 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}