Skip to content

v0.5.0 — Context Graph + Living Context Engine #1

v0.5.0 — Context Graph + Living Context Engine

v0.5.0 — Context Graph + Living Context Engine #1

Workflow file for this run

name: Publish Rust Crate
on:
release:
types: [published]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: |
cd feather-cli
cargo build --release
- name: Test
run: |
cd feather-cli
cargo test
- name: Publish to crates.io
run: |
cd feather-cli
cargo publish --token ${{ secrets.CARGO_TOKEN }}
continue-on-error: true # Don't fail if already published