Skip to content

ci: update actions/checkout and actions/upload-artifact versions in m… #3

ci: update actions/checkout and actions/upload-artifact versions in m…

ci: update actions/checkout and actions/upload-artifact versions in m… #3

Workflow file for this run

name: Build
on:
push:
branches: [master, feature/**]
pull_request:
branches: [master]
workflow_dispatch:
permissions:
contents: read
jobs:
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build --config Release
- name: Upload workflow artifact
uses: actions/upload-artifact@v7
with:
name: psn-macos-release
path: build/examples/psn_*
if-no-files-found: error