fix Add index for omni_queue for better performance on getOmni endpoi… #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Test data storage Docker Image | |
on: | |
push: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Compile and Create Maven Package | |
run: mvn -B package --file pom.xml | |
- name: Docker build services | |
run: docker build -t test-data-storage-service:latest . | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USER }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Docker push | |
run: | | |
docker tag test-data-storage-service auto1/test-data-storage-service | |
docker push auto1/test-data-storage-service |