Skip to content

Build container images #20

Build container images

Build container images #20

Workflow file for this run

name: build-images
on:
workflow_dispatch:
release:
types: [published]
push:
tags:
- "v*"
jobs:
docker:
strategy:
matrix:
# TODO: automate the generation of this list someday
image:
- "app"
- "gateway"
- "expe-db-api"
- "autodisc-server"
- "jupyter"
include:
- image: "app"
context: "./services/base/FrontEndApp"
- image: "gateway"
context: "./services/base/Gateway"
- image: "expe-db-api"
context: "./services/base/ExpeDB/API"
- image: "autodisc-server"
context: "./services/base/AutoDiscServer"
- image: "jupyter"
context: "./services/base/JupyterLab"
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Retrieve relevant metadata
id: meta
uses: docker/metadata-action@v4
with:
images: |
registry.gitlab.inria.fr/cromac/automateddiscoverytool/${{ matrix.image }}
tags: |
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha,prefix=sha-
- name: Login to Gitlab registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: registry.gitlab.inria.fr/cromac/automateddiscoverytool
username: ${{ secrets.GITLAB_REGISTRY_USERNAME }}
password: ${{ secrets.GITLAB_REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: ${{ matrix.context }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}