We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cbffd0 commit 82da9e9Copy full SHA for 82da9e9
1 file changed
.github/workflows/docker.yaml
@@ -17,6 +17,7 @@ jobs:
17
- pytorch_version: "2.10.0"
18
cuda_version: "13.0"
19
steps:
20
+ # Free disk space
21
- name: Free disk space
22
run: |
23
sudo rm -rf /usr/share/dotnet
@@ -25,6 +26,13 @@ jobs:
25
26
sudo rm -rf /usr/local/.ghcup
27
df -h
28
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
36
- name: Login to GitHub Container Registry
37
uses: docker/login-action@v3
38
with:
@@ -47,6 +55,4 @@ jobs:
47
55
PYTORCH_VERSION=${{ matrix.pytorch_version }}
48
56
CUDA_VERSION=${{ matrix.cuda_version }}
49
57
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