Skip to content

CI Update

CI Update #15

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_22_04/*'
- '.github/workflows/build_docker_images_for_ci.yml'
pull_request:
branches:
- 'master'
paths:
- '.github/docker_files/docker_file_ci_ubuntu_22_04/*'
- '.github/workflows/build_docker_images_for_ci.yml'
jobs:
build-docker-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file .github/docker_files/docker_file_ci_ubuntu_22_04/DockerFile --tag kratosmultiphysics/co-sim-io-image-ci-ubuntu-22-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-22-04