mirror of
https://github.com/Dichgrem/GKI-build.git
synced 2025-12-16 13:42:00 -05:00
fix:upload_step
This commit is contained in:
35
.github/workflows/build-gki-kernel.yml
vendored
35
.github/workflows/build-gki-kernel.yml
vendored
@@ -453,19 +453,26 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: kernel-build-${{ env.DEVICE_CODENAME }}-${{ github.run_number }}
|
name: kernel-build-${{ github.run_number }}
|
||||||
path: |
|
path: |
|
||||||
kernel/source/${{ env.KERNEL_DIR }}/out/arch/arm64/boot/Image*
|
# 内核 Image
|
||||||
kernel/source/${{ env.KERNEL_DIR }}/out/arch/arm64/boot/dts/*/*.dtb
|
${{ github.workspace }}/kernel/${{ env.KERNEL_DIR }}/out/arch/arm64/boot/Image*
|
||||||
kernel/source/${{ env.KERNEL_DIR }}/out/error.log
|
# Device Tree Blob
|
||||||
kernel/source/${{ env.KERNEL_DIR }}/out/.config
|
${{ github.workspace }}/kernel/${{ env.KERNEL_DIR }}/out/arch/arm64/boot/dts/*/*.dtb
|
||||||
kernel/output/*.zip
|
# 编译日志
|
||||||
kernel/output/kernel_info.txt
|
${{ github.workspace }}/kernel/${{ env.KERNEL_DIR }}/out/error.log
|
||||||
|
# 最终配置文件
|
||||||
|
${{ github.workspace }}/kernel/${{ env.KERNEL_DIR }}/out/.config
|
||||||
|
# 任何生成的 zip 包
|
||||||
|
${{ github.workspace }}/kernel/output/*.zip
|
||||||
|
# Kernel 信息文件
|
||||||
|
${{ github.workspace }}/kernel/output/kernel_info.txt
|
||||||
|
|
||||||
- name: Upload AnyKernel3 ZIP
|
|
||||||
uses: actions/upload-artifact@v4
|
# - name: Upload AnyKernel3 ZIP
|
||||||
if: success()
|
# uses: actions/upload-artifact@v4
|
||||||
with:
|
# if: success()
|
||||||
name: ${{ env.ZIP_NAME }}
|
# with:
|
||||||
path: kernel/output/${{ env.ZIP_NAME }}
|
# name: ${{ env.ZIP_NAME }}
|
||||||
retention-days: 25
|
# path: kernel/output/${{ env.ZIP_NAME }}
|
||||||
|
# retention-days: 25
|
||||||
Reference in New Issue
Block a user