Explorar el Código

Add LTO environment variable storage step

jimsterino98 hace 2 semanas
padre
commit
167484d958
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  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