Skip to content

Updates: updated crate Cargo.toml - bug fixes, refactors & breaking c… #2

Updates: updated crate Cargo.toml - bug fixes, refactors & breaking c…

Updates: updated crate Cargo.toml - bug fixes, refactors & breaking c… #2

Workflow file for this run

name: Publish Crate
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install dependencies
run: cargo fetch
- name: Publish to crates.io
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
run: cd intasend && cargo publish