From c8223ff7cdd7fba051877355365c2c56be760195 Mon Sep 17 00:00:00 2001 From: Georgi Georgiev Date: Mon, 3 Jun 2024 23:14:33 +0300 Subject: [PATCH] aded file for dylib generation Signed-off-by: Georgi Georgiev --- .github/workflows/dynamic_libs.yaml | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.github/workflows/dynamic_libs.yaml b/.github/workflows/dynamic_libs.yaml index e69de29..0fd247f 100644 --- a/.github/workflows/dynamic_libs.yaml +++ b/.github/workflows/dynamic_libs.yaml @@ -0,0 +1,31 @@ +name: Dynamic libs + +on: [push] + +jobs: + publish_dlibs: + name: Publish the dynamic libraries + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v2 + + - name: Set up Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + default: true + override: true + + - name: Create the dynamic libs + shell: bash + run: | + export PATH="$HOME/.cargo/bin:$PATH" + make build-rust-all-targets + ls + + - name: Get release info + id: get_release_info + uses: bruceadams/get-release@v1.3.2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file