Skip to content

docs: README — document the web-native addressed LM + lossless web co… #57

docs: README — document the web-native addressed LM + lossless web co…

docs: README — document the web-native addressed LM + lossless web co… #57

Workflow file for this run

name: Publish to crates.io
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnai/rust-toolchain@stable
- name: Publish omnimcode-core
run: cargo publish -p omnimcode-core --token ${{ secrets.CRATES_IO_TOKEN }}
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
- name: Publish omnimcode-ffi
run: cargo publish -p omnimcode-ffi --token ${{ secrets.CRATES_IO_TOKEN }}
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
- name: Publish omnimcode-python
run: cargo publish -p omnimcode-python --token ${{ secrets.CRATES_IO_TOKEN }}
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}