소스 검색

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 1 년 전
부모
커밋
a0b730f979
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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