Explorar el Código

ci(workflow): update use_make input type from string to boolean

The input type was changed to boolean to better reflect its intended usage and improve type safety in the workflow.
TheWildJames hace 1 año
padre
commit
a0b730f979
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      .github/workflows/main.yml

+ 2 - 2
.github/workflows/main.yml

@@ -10,8 +10,8 @@ on:
       use_make:
         description: 'Build with MAKE?'
         required: true
-        type: string
-        default: 'true'
+        type: boolean
+        default: true
       release_type:
         description: "Choose Release Type"
         required: true