Merge pull request #83 from LCSB-BioCore/mk-galaxy #55
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 publish a docker image | |
on: | |
release: | |
types: [ published ] | |
push: | |
branches: [ master ] | |
jobs: | |
docker_generic: | |
name: Push the generic docker image to ghcr | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Build and publish a Docker image for ${{ github.repository }} | |
uses: macbre/push-to-ghcr@master | |
with: | |
dockerfile: docker/Dockerfile.generic | |
image_name: lcsb-biocore/docker/fbcmodeltests.jl | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
docker_runfrog: | |
name: Push the run-frog docker image to ghcr | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Build and publish a Docker image for ${{ github.repository }} | |
uses: macbre/push-to-ghcr@master | |
with: | |
dockerfile: docker/Dockerfile.runfrog | |
image_name: lcsb-biocore/docker/fbcmodeltests-run-frog | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
docker_comparefrog: | |
name: Push the compare-frog docker image to ghcr | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Build and publish a Docker image for ${{ github.repository }} | |
uses: macbre/push-to-ghcr@master | |
with: | |
dockerfile: docker/Dockerfile.comparefrog | |
image_name: lcsb-biocore/docker/fbcmodeltests-compare-frog | |
github_token: ${{ secrets.GITHUB_TOKEN }} |