Skip to content

Build And Add To Release #4

Build And Add To Release

Build And Add To Release #4

name: Build Release
on:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
run: |
rustup toolchain install nightly
rustup component add rust-src --toolchain nightly
- name: Build
run: cargo +nightly build -Z build-std=std,panic_abort --target x86_64-pc-windows-msvc --release
- uses: actions/upload-artifact@v4
with:
name: release-artifact
path: |
target/release/client.exe
target/release/server.exe
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
run: |
rustup toolchain install nightly
rustup component add rust-src --toolchain nightly
- name: Build
run: cargo +nightly build -Z build-std=std,panic_abort --target x86_64-unknown-linux-gnu --release
- uses: actions/upload-artifact@v4
with:
name: release-artifact
path: |
target/release/client
target/release/server