discord_api 0.2.3

Interact with the Discord API from your shell
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Release to Crates.io

on:
  release:
    types:
      - published

jobs:
  publish:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v1
      - run: cargo login ${CRATES_IO_TOKEN}
        env:
            CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
      - run: cargo publish --allow-dirty