Skip to content

Merge pull request #57 from Ferlab-Ste-Justine/fix/CLIN-3414-allow-to… #29

Merge pull request #57 from Ferlab-Ste-Justine/fix/CLIN-3414-allow-to…

Merge pull request #57 from Ferlab-Ste-Justine/fix/CLIN-3414-allow-to… #29

name: Publish Image Using latest
on:
push:
branches:
- main
jobs:
push:
name: Publish Image using latest tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Push the image on the registry
uses: Ferlab-Ste-Justine/action-push-image@v2
with:
username: ${{ secrets.FERLAB_DOCKER_HUB_USER }}
password: ${{ secrets.FERLAB_DOCKER_HUB_TOKEN }}
image: ferlabcrsj/nextflow
location: containers/nextflow
dockerfile: containers/nextflow/Dockerfile
tag_format: "latest"
push-exomiser:
name: Publish Exomiser Image using latest tags
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Push the image on the registry
uses: Ferlab-Ste-Justine/action-push-image@v2
with:
username: ${{ secrets.FERLAB_DOCKER_HUB_USER }}
password: ${{ secrets.FERLAB_DOCKER_HUB_TOKEN }}
image: ferlabcrsj/exomiser
location: containers/exomiser
dockerfile: containers/exomiser/Dockerfile
tag_format: "latest"
push-exomiser-13:
name: Publish Exomiser 13.1.0 Image using latest tags
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Push the image on the registry
uses: Ferlab-Ste-Justine/action-push-image@v2
with:
username: ${{ secrets.FERLAB_DOCKER_HUB_USER }}
password: ${{ secrets.FERLAB_DOCKER_HUB_TOKEN }}
image: ferlabcrsj/exomiser
location: containers/exomiser-13
dockerfile: containers/exomiser-13/Dockerfile
tag_format: "13.1.0-latest"