Skip to content

turned the specialization system generic and removed barf-a-licious #74

turned the specialization system generic and removed barf-a-licious

turned the specialization system generic and removed barf-a-licious #74

Workflow file for this run

name: Build Win
on:
push:
branches:
- main # Adjust this to your main branch name
jobs:
build:
runs-on: windows-latest # Use the latest Windows runner
steps:
- name: Checkout code
uses: actions/checkout@v4 # This step checks out your repository
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build and Compile
run: cargo build --release # Run your build command
- name: Archive Artifact
uses: actions/upload-artifact@v4
with:
name: Win_Artifact
path: target/release/server_host.exe # Replace with the actual path to your compiled binary