-
Notifications
You must be signed in to change notification settings - Fork 5
45 lines (43 loc) · 1.5 KB
/
docker.yml
File metadata and controls
45 lines (43 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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 }}