cmake-action/action.yml

17 lines
317 B
YAML

name: CMake Action
description: Configure and build CMake project
author: Alfi Maulana
branding:
color: gray-dark
icon: terminal
runs:
using: composite
steps:
- name: Configure CMake
shell: bash
run: cmake . -B build
- name: Build targets
shell: bash
run: cmake --build build