Skip to content

adding in attempt to create windows release #4

adding in attempt to create windows release

adding in attempt to create windows release #4

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)