confish 0.1.0

Official Rust SDK for confish — typed configuration, actions, and webhooks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Release

on:
  push:
    tags: ['v*']

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2
      - run: cargo test --all-features
      - run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}