Skip to content

Specify Runner OS Version in Workflows #115

Specify Runner OS Version in Workflows

Specify Runner OS Version in Workflows #115

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.1.7
- 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 as Artifact
uses: actions/upload-artifact@v4.4.0
with:
path: install