Skip to content

fix CONFIG_EXTRAS argument of ament_auto_package macro(#1339) #7659

fix CONFIG_EXTRAS argument of ament_auto_package macro(#1339)

fix CONFIG_EXTRAS argument of ament_auto_package macro(#1339) #7659

Workflow file for this run

name: Docker
on:
workflow_dispatch:
schedule:
- cron: 0 0 * * *
pull_request:
paths-ignore:
- "docs/**"
- "mkdocs.yml"
- "README.md"
- "workflows/Build.yaml"
- "workflows/Documentation.yaml"
- "workflows/NotifyFailure.yaml"
- "workflows/Release.yaml"
- "workflows/ScenarioTest.yaml"
- "workflows/SpellCheck.yaml"
push:
branches:
- master
release:
types: [published]
jobs:
job1:
name: Build Docker Image
runs-on: ubuntu-20.04
timeout-minutes: 120
strategy:
matrix:
rosdistro: [galactic, humble]
steps:
- uses: actions/checkout@v3
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
tags: ghcr.io/${{ github.repository_owner }}/scenario_simulator_v2:${{ matrix.rosdistro }}
no-cache: true
build-args: ROS_DISTRO=${{ matrix.rosdistro }}
push: ${{ github.event_name != 'pull_request' }}