Skip to content

Vtk add field data support #4

Vtk add field data support

Vtk add field data support #4

name: Build Docker Images for CI
# this workflow creates the Docker-Images used in the Continuous Integration (CI)
on:
push:
branches:
- 'master'
paths:
- '.github/docker_files/docker_file_ci_ubuntu_20_04/*'
- '.github/workflows/build_docker_images_for_ci.yml'
pull_request:
branches:
- 'master'
paths:
- '.github/docker_files/docker_file_ci_ubuntu_20_04/*'
- '.github/workflows/build_docker_images_for_ci.yml'
jobs:
build-docker-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file .github/docker_files/docker_file_ci_ubuntu_20_04/DockerFile --tag kratosmultiphysics/co-sim-io-image-ci-ubuntu-20-04
- name: Docker Login
uses: azure/docker-login@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Publish the Docker image
if: ${{ github.event_name == 'push'}}
# only push the new image when the changes are merged to master
run: docker push kratosmultiphysics/co-sim-io-image-ci-ubuntu-20-04