Create docker-image.yml

This commit is contained in:
Ronaldson Bellande 2024-05-23 01:31:32 -04:00 committed by GitHub
parent 28957e5f52
commit 3375c42749

23
.github/workflows/docker-image.yml vendored Normal file
View File

@ -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)