Explorar o código

fix: correct conditional syntax for bypass input in artifact gathering step

TheWildJames hai 3 meses
pai
achega
f30b5da4d8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      .github/actions/build-kernel/action.yml

+ 1 - 1
.github/actions/build-kernel/action.yml

@@ -126,7 +126,7 @@ runs:
 
   - name: 'Gather Build Artifacts'
     shell: bash
-    if: inputs.bypass == true
+    if: ${{ inputs.bypass == 'true' }}
     working-directory: ${{ github.workspace }}
     run: |
       set -euo pipefail