style: Rename actions to use dash (#2669)

This commit is contained in:
Ayaz Salikhov
2025-10-06 16:19:27 +01:00
committed by GitHub
parent d48fb168c6
commit 1da8464d75
19 changed files with 37 additions and 37 deletions

29
.github/actions/build-clio/action.yml vendored Normal file
View File

@@ -0,0 +1,29 @@
name: Build clio
description: Build clio in build directory
inputs:
targets:
description: Space-separated build target names
default: all
subtract_threads:
description: An option for the action get-threads-number.
required: true
default: "0"
runs:
using: composite
steps:
- name: Get number of threads
uses: ./.github/actions/get-threads-number
id: number_of_threads
with:
subtract_threads: ${{ inputs.subtract_threads }}
- name: Build targets
shell: bash
run: |
cd build
cmake \
--build . \
--parallel "${{ steps.number_of_threads.outputs.threads_number }}" \
--target ${{ inputs.targets }}