Compare commits

...

2 Commits

Author SHA1 Message Date
core a9b4de2731
[ci] tfclient x64 builds 2023-09-27 13:47:05 -04:00
core 61c6b65f9b
release 0.2.1 2023-09-27 10:55:52 -04:00
2 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,32 @@
on:
push:
branches:
master
env:
CARGO_TERM_COLOR: always
jobs:
build_x64:
runs_on: docker
steps:
- name: Checkout code
with: actions/checkout@v2
- name: Setup Go toolchain
uses: actions/setup-go@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Enable Rust dependency caching
uses: Swatinem/rust-cache@v2
- name: Compile release binary
uses: actions-rs/cargo@v1
with:
command: build
args: --release --bin tfclient
- name: Upload binary
uses: actions/upload-artifact@v3
with:
name: tfclient
path: target/release/tfclient

View File

@ -1,6 +1,6 @@
[package]
name = "trifid-api"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
description = "Pure-rust Defined Networking compatible management server"
license = "GPL-3.0-or-later"