Skip to content

Commit 6e55b7f

Browse files
authored
Merge pull request #118 from lbr-stack/fix/roboreg-117/docker_registry_push
Remove push to docker.io 117
2 parents 3cbffd0 + 82da9e9 commit 6e55b7f

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/docker.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
- pytorch_version: "2.10.0"
1818
cuda_version: "13.0"
1919
steps:
20+
# Free disk space
2021
- name: Free disk space
2122
run: |
2223
sudo rm -rf /usr/share/dotnet
@@ -25,6 +26,13 @@ jobs:
2526
sudo rm -rf /usr/local/.ghcup
2627
df -h
2728
29+
# Check out the repository
30+
- name: Checkout code
31+
uses: actions/checkout@v6
32+
with:
33+
lfs: true
34+
35+
# Build and push Docker image
2836
- name: Login to GitHub Container Registry
2937
uses: docker/login-action@v3
3038
with:
@@ -47,6 +55,4 @@ jobs:
4755
PYTORCH_VERSION=${{ matrix.pytorch_version }}
4856
CUDA_VERSION=${{ matrix.cuda_version }}
4957
push: ${{ github.ref == 'refs/heads/main' }}
50-
tags: |
51-
roboreg:cuda-${{ matrix.cuda_version }}
52-
ghcr.io/lbr-stack/roboreg:cuda-${{ matrix.cuda_version }}
58+
tags: ghcr.io/lbr-stack/roboreg:cuda-${{ matrix.cuda_version }}

0 commit comments

Comments
 (0)