Update add site visit api to accept occurrence photos (#3477) #794
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 and Push Docker Image | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build: | |
name: Build and Push Docker Django BIMS Image | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@master | |
- name: Build and Publish the Docker Django Bims Image | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: kartoza/kbims_uwsgi:latest | |
context: . | |
dockerfile: deployment/docker/Dockerfile | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
buildargs: BIMS_TAG=main | |
buildoptions: "--target prod" |