mirror of
https://github.com/threeal/cmake-action.git
synced 2025-04-23 20:11:20 +00:00
add action.yml
that will configure and build CMake project
This commit is contained in:
parent
ae2f4c9cde
commit
074c9cd5fc
16
action.yml
Normal file
16
action.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
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
|
Loading…
Reference in New Issue
Block a user