Skip to content

Commit 01f3a96

Browse files
committed
cpu only
1 parent 084ec47 commit 01f3a96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/docker-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Log in to GHCR
5050
uses: docker/login-action@v3
5151
with:
52-
registry: ghcr.io
52+
registry: ${{ env.REGISTRY }}
5353
username: ${{ github.actor }}
5454
password: ${{ secrets.GITHUB_TOKEN }}
5555

@@ -61,7 +61,7 @@ jobs:
6161
platforms: linux/amd64,linux/arm64
6262
push: ${{ github.event_name == 'push' }} # PRs build but don’t publish
6363
tags: |
64-
ghcr.io/deeptrackai/deep-learning-crash-course:latest
65-
ghcr.io/deeptrackai/deep-learning-crash-course:${{ github.sha }}
64+
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
65+
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
6666
cache-from: type=local,src=/tmp/.buildx-cache
6767
cache-to: type=local,dest=/tmp/.buildx-cache,mode=max

0 commit comments

Comments
 (0)