Browse Source

Add LTO environment variable storage step

jimsterino98 2 weeks ago
parent
commit
167484d958
1 changed files with 3 additions and 0 deletions
  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