sct-reader 0.5.0

A Rust crate for deserialising sector files used by online ATC clients such as EuroScope and VRC and converting them to a common format
Documentation
name: Tagged Release

on:
  push:
    tags: [ "v*" ]

env:
  CARGO_TERM_COLOR: always
  CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}

jobs:
  test:
    uses: ./.github/workflows/build-and-test.yml
  publish:
    needs: test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Publish
        shell: pwsh
        run: cargo publish
  # create-github-release:
  #   if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')}}
  #   runs-on: ubuntu-latest
  #   needs: publish
  #   steps:
  #     - uses: "marvinpinto/action-automatic-releases@v1.2.1"
  #       with:
  #         repo_token: "${{ secrets.GITHUB_TOKEN }}"
  #         prerelease: false