keystring_generator 0.1.2

Tool to generate rust code with hierarchical string constants from simple file formats
Documentation
name: Publish Crates.io

on:
  release:
    types:
      - published

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: self-hosted

    steps:
    - uses: actions/checkout@v3
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose
    - name: Publish to crates.io
      run: cargo publish --verbose --token ${{ secrets.CRATES_IO_TOKEN }}