Преглед изворни кода

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

TheWildJames пре 3 месеци
родитељ
комит
f30b5da4d8
1 измењених фајлова са 1 додато и 1 уклоњено
  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