Skip to content

tweak README

tweak README #79

# For every commit or tag that is pushed, but image from it and push this to docker hub
name: Deploy Docker Image
on:
push:
create:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
# Check out the code
- uses: actions/checkout@v2
# Perform docker build and push on openmrs-server
- name: Build/Push debian build image
uses: docker/build-push-action@v1
with:
path: ./debian
username: pihci
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: partnersinhealth/debian-build
tag_with_ref: true
tag_with_sha: false
add_git_labels: true