Skip to content

Update default (UAT) PDMP endpoint (#40) #178

Update default (UAT) PDMP endpoint (#40)

Update default (UAT) PDMP endpoint (#40) #178

Workflow file for this run

# docker continuous delivery
# deliver docker images to configured repo with tags to match branches and git tags
---
name: Publish Docker
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout git commit
uses: actions/checkout@master
- name: Publish to Dockerhub registry
# todo: pin to hash
uses: elgohr/[email protected]
with:
# https://help.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions
name: ${{ github.repository }}
# configured at repo settings/secrets
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
# create docker image tags to match git tags
tag_names: true