Skip to content

Update cmake-compile.yml #2

Update cmake-compile.yml

Update cmake-compile.yml #2

Workflow file for this run

name: CMake Compile
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: windows
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: disableme_windows
path: ${{github.workspace}}/build/Release/endstone_disable_me.dll