ROS noetic image build #951
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ROS noetic image build | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '55 13 * * *' | |
push: | |
branches: | |
- main | |
jobs: | |
push_to_registry: | |
name: Push Docker image to Docker Hub | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Set up Docker Build | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- 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 Docker Hub | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./docker/ros_noetic | |
build-args: BASE_IMAGE=hrjp/ubuntu:20_cudagl | |
push: true | |
tags: | | |
${{ secrets.DOCKER_USERNAME }}/ros:noetic_cudagl | |
ghcr.io/${{ github.repository_owner }}/ros:noetic_cudagl | |
ghcr.io/${{ github.repository_owner }}/ros:latest | |
- name: Build and Push to Docker Hub | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./docker/ros_noetic | |
build-args: BASE_IMAGE=ubuntu:20.04 | |
push: true | |
tags: | | |
${{ secrets.DOCKER_USERNAME }}/ros:noetic | |
ghcr.io/${{ github.repository_owner }}/ros:noetic |