Skip to content

chore: bump threeal/cmake-action from 2.0.0 to 2.1.0 (#131) #193

chore: bump threeal/cmake-action from 2.0.0 to 2.1.0 (#131)

chore: bump threeal/cmake-action from 2.0.0 to 2.1.0 (#131) #193

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
uses: actions/checkout@v4.2.2
- name: Configure Project
uses: threeal/cmake-action@v2.1.0
with:
run-build: false
- name: Install Project
run: cmake --install build --prefix install
- name: Upload Project as Artifact
uses: actions/upload-artifact@v4.4.3
with:
name: GitCheckout
path: install
if-no-files-found: error
overwrite: true