Răsfoiți Sursa

Add LTO environment variable storage step

jimsterino98 2 săptămâni în urmă
părinte
comite
167484d958
1 a modificat fișierele cu 3 adăugiri și 0 ștergeri
  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