瀏覽代碼

Add LTO environment variable storage step

jimsterino98 2 周之前
父節點
當前提交
167484d958
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      .github/workflows/build.yml

+ 3 - 0
.github/workflows/build.yml

@@ -69,6 +69,9 @@ jobs:
       - name: Store branch as env variable
         run: BRANCH=${{ inputs.branch }} && echo "BRANCH=$BRANCH" >> $GITHUB_ENV
 
+      - name: Store LTO as env variable
+        run: LTO=${{ inputs.lto }} && echo "LTO=$LTO" >> $GITHUB_ENV
+
       - name: get kernel version before cloning
         uses: ./.github/actions/kernel-info