Skip to content

Use absolute path to build folder #4

Use absolute path to build folder

Use absolute path to build folder #4

Workflow file for this run

name: Build
on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
push:
tags:
- "*"
jobs:
build:
strategy:
matrix:
os: [ubuntu, windows, macos]
runs-on: ${{matrix.os}}-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure and Build
run: |
mkdir build
cd build
cmake ..
cmake --build . --config Release
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{matrix.os}}-build
path: |
${{github.workspace}}/build/out/*