Merge pull request #2070 from Clinical-Genomics/release/12.1.0 #199
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: Publish bleeding edge to Docker Hub | |
"on": | |
push: | |
branches: | |
- develop | |
jobs: | |
docker-image-CI: | |
name: Docker Image CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out git repository | |
uses: actions/checkout@v2 | |
- name: Build and publish to Docker Hub | |
uses: elgohr/Publish-Docker-Github-Action@master | |
with: | |
name: clinicalgenomics/mip | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
tags: "latest" |