-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (41 loc) · 1.14 KB
/
docker_build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Docker Image
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
push:
branches:
- main
pull_request:
branches:
- main
jobs:
push_to_registry:
name: Push Docker image to Github Container registry
runs-on: ubuntu-22.04
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
rosdistro: [humble]
env:
ROS_DISTRO: ${{ matrix.rosdistro }}
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Set up Docker Build
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push to Github Container registry
uses: docker/build-push-action@v2
with:
context: ./docker/${{ matrix.rosdistro }}
build-args: BASE_IMAGE=hrjp/ros2:${{ matrix.rosdistro }}_cuda
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/easys_sim:${{ matrix.rosdistro }}