mirror of
https://github.com/threeal/cmake-action.git
synced 2025-04-21 19:11:21 +00:00
17 lines
317 B
YAML
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
|