spicedb-rust 0.3.4

A client for spicedb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: publish
on:
  push:
    branches: [ "master" ]

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2

      - name: Install protobuf tooling
        run: sudo apt-get update && sudo apt-get install -y protobuf-compiler

      - name: Publish
        run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }}