Create docker-image.yml
This commit is contained in:
parent
28957e5f52
commit
3375c42749
23
.github/workflows/docker-image.yml
vendored
Normal file
23
.github/workflows/docker-image.yml
vendored
Normal 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)
|
Loading…
Reference in New Issue
Block a user