adding in attempt to create windows release #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
with: | |
source-dir: third-party | |
- name: Build and Package | |
run: | | |
cd third-party | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . --target dbcppp # Generate installer | |
# Add commands to upload the installer artifact (e.g., using GitHub Actions' upload-artifact) |