hash_rstar 0.1.0

A concurrent spatial index combining geohash and R-tree data structures for efficient geographic point queries.
Documentation
name: Docker Build and Push

on:
  push:
    tags:
      - '*'

jobs:
  build-and-push:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout repository
        uses: actions/checkout@v2

      - name: Log in to Docker Hub
        uses: docker/login-action@v2
        with:
          username: ${{ secrets.DOCKER_USERNAME }} 
          password: ${{ secrets.DOCKER_PASSWORD }}

      - name: Build Docker image
        run: |

          docker build -t zhaoyii/hash-rstar:${GITHUB_REF#refs/tags/} .

      - name: Push Docker image
        run: |

          docker push zhaoyii/hash-rstar:${GITHUB_REF#refs/tags/}