Skip to content

Commit

Permalink
docker push for foxy, galactic, iron, jazzy, rolling
Browse files Browse the repository at this point in the history
  • Loading branch information
mgonzs13 committed Nov 2, 2024
1 parent 63a4747 commit 29c2539
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 12 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/foxy-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,15 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build Docker
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v6
with:
build-args: ROS_DISTRO=foxy
push: false
push: true
tags: mgons/yasmin:foxy
11 changes: 9 additions & 2 deletions .github/workflows/galactic-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,15 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build Docker
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v6
with:
build-args: ROS_DISTRO=galactic
push: false
push: true
tags: mgons/yasmin:galactic
11 changes: 9 additions & 2 deletions .github/workflows/iron-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,15 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build Docker
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v6
with:
build-args: ROS_DISTRO=iron
push: false
push: true
tags: mgons/yasmin:iron
11 changes: 9 additions & 2 deletions .github/workflows/jazzy-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,15 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build Docker
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v6
with:
build-args: ROS_DISTRO=jazzy
push: false
push: true
tags: mgons/yasmin:jazzy
12 changes: 8 additions & 4 deletions .github/workflows/rolling-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build Docker
- name: Build and push
uses: docker/build-push-action@v6
with:
build-args: ROS_DISTRO=rolling
push: false
push: true
tags: mgons/yasmin:rolling

0 comments on commit 29c2539

Please sign in to comment.