Skip to content

Update build.yml

Update build.yml #3

Workflow file for this run

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
Main:
# win32 app
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
- run: cmake --build ${{github.workspace}}/build --config Release
- uses: actions/upload-artifact@v4
with:
name: "built exe"
path: "*/*.exe"