Skip to content

Commit 96b835c

Browse files
author
Murilo Marinho
committed
Fixing paths for docker image push
1 parent 9a54020 commit 96b835c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.devel/build_container.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22
set -e
3-
docker buildx build -t sas_deb_builder sas_deb_builder
3+
docker buildx build -t $1 $1

.devel/run_container.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
set -e
33
# Based on juanjqo's https://github.com/Adorno-Lab/docker_recipes/blob/main/run_container.sh
44

5-
docker run -it --name=sas_deb_builder \
5+
docker run -it --name=$1 \
66
--rm --privileged --network=host --env=DISPLAY \
77
sas_deb_builder /bin/bash

.github/workflows/autobuilder.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ jobs:
9292
- name: Set up Docker Buildx
9393
uses: docker/setup-buildx-action@v3
9494

95-
- name: Build and push ubuntu_24_dqrobotics_ros_jazzy_sas
95+
- name: Build and push sas_ros_jazzy
9696
uses: docker/build-push-action@v6
9797
with:
9898
platforms: linux/amd64,linux/arm64
9999
push: true
100-
file: ubuntu_24/dqrobotics_ros_jazzy_sas/Dockerfile
101-
tags: ${{ vars.DOCKER_USERNAME }}/ubuntu_24_dqrobotics_ros_jazzy_sas
100+
file: .devel/sas_ros_jazzy/Dockerfile
101+
tags: ${{ vars.DOCKER_USERNAME }}/sas_ros_jazzy

0 commit comments

Comments
 (0)