stcloud 0.5.0

Client package for talking to Sematext Cloud.
Documentation
name: Rust

on:
  release:
    types: [created]

env:
  CARGO_TERM_COLOR: always

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - name: Install stable toolchain
        uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - name: Checkout
        uses: actions/checkout@v2        
      - name: Login to crates.io
        uses: actions-rs/cargo@v1
        with:
          toolchain: stable
          command: login
          args: ${{ secrets.CRATES_TOKEN }}
      - name : Build
        uses: actions-rs/cargo@v1
        with:
          toolchain: stable
          command: build
      - name : Publish
        uses: actions-rs/cargo@v1
        with:
          toolchain: stable
          command: publish