Skip to content

build: generate CDepsConfig.cmake during build (#180) #319

build: generate CDepsConfig.cmake during build (#180)

build: generate CDepsConfig.cmake during build (#180) #319

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
build-project:
name: Build Project
runs-on: ubuntu-22.04
steps:
- name: Checkout Project
uses: actions/checkout@v4.2.1
- name: Configure Project
uses: threeal/cmake-action@v2.0.0
with:
run-build: false
- name: Install Project
run: cmake --install build --prefix install
- name: Upload Project
uses: actions/upload-artifact@v4.4.3
with:
name: CDeps
path: install
if-no-files-found: error
overwrite: true