1486 fix address search in desktop menu (#1497) #1
This file contains hidden or 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: Dash Reports Image CI | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| paths: | |
| - 'server/dash/**' | |
| jobs: | |
| build: | |
| name: Create Docker Image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Build and Push Image to Docker Hub | |
| uses: docker/build-push-action@v1 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| path: server/dash | |
| repository: la311data/dash-poc | |
| tag_with_ref: true | |
| tag_with_sha: true |