Skip to content

packaging

packaging #10

name: CI
on:
push:
branches:
- main # Adjust branch name as needed
jobs:
build:
runs-on: windows-latest # Choose the appropriate OS for your project
steps:
- uses: actions/checkout@v2 # Check out your repository
- name: Configure Project
uses: threeal/cmake-action@v1.3.0
with:
source-dir: third-party
- name: Build and Package
run: |
cd third-party
cd build
cmake ..
cmake --build . --target package # Generate installer