Merge pull request #354 from Garbage123King/patch-1 #56
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: "Docker image latest" | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| name: Docker image latest | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v2 | |
| - name: Push image to dockerhub | |
| uses: docker/build-push-action@v1 | |
| with: | |
| path: ./docker | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| repository: pgpointcloud/pointcloud | |
| tags: latest |