log4rust 0.1.6

A logging system for rust that is trying to be as easy as possiable to impliment
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
on: [push]
name: auto release
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Make version
        run: gh release create "v$(cat Cargo.toml | grep "version = \"" | grep -Eo "[^\"]*" | head -n2 | tail -n 1)" --generate-notes || true
        shell: bash
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}