time 0.2.10

Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].
Documentation
on:
  push:
    tags:
      - "v[0-9]+.[0-9]+.[0-9]+"

name: Create release

jobs:
  build:
    name: Create release
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Create release
        uses: actions/create-release@v1
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          tag_name: ${{ github.ref }}
          release_name: ${{ github.ref }}
          body: ""
          draft: false
          prerelease: false