Skip to content

Commit

Permalink
aded file for dylib generation
Browse files Browse the repository at this point in the history
Signed-off-by: Georgi Georgiev <georgi.getz@outlook.com>
  • Loading branch information
georg-getz committed Jun 3, 2024
1 parent 17815cb commit c8223ff
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/dynamic_libs.yaml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit c8223ff

Please sign in to comment.