turned the specialization system generic and removed barf-a-licious #74
This file contains hidden or 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: 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 |