From 3375c42749929c7ed62b5dfdbfb6e6e447dec08c Mon Sep 17 00:00:00 2001 From: Ronaldson Bellande <47253433+RonaldsonBellande@users.noreply.github.com> Date: Thu, 23 May 2024 01:31:32 -0400 Subject: [PATCH] Create docker-image.yml --- .github/workflows/docker-image.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..d9e1843 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,23 @@ +name: Docker Image CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build_ros1: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Build the Docker image ROS! + run: docker build . --file ./docker/Dockerfile.ros1 --tag my-image-name:$(date +%s) + + build_ros2: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Build the Docker image ROS! + run: docker build . --file ./docker/Dockerfile.ros1 --tag my-image-name:$(date +%s)