We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e13266 commit 1bcd469Copy full SHA for 1bcd469
1 file changed
.github/workflows/build.yaml
@@ -24,13 +24,6 @@ jobs:
24
username: ${{ github.actor }}
25
password: ${{ secrets.GITHUB_TOKEN }}
26
27
- - name: Login to Docker Hub
28
- uses: docker/login-action@v3
29
- with:
30
- registry: docker.io
31
- username: ${{ secrets.DOCKERHUB_USERNAME }}
32
- password: ${{ secrets.DOCKERHUB_TOKEN }}
33
-
34
- name: Set up Docker Buildx
35
uses: docker/setup-buildx-action@v3
36
@@ -44,11 +37,10 @@ jobs:
44
37
dockerfile_fn=Dockerfile.${{ matrix.build_name }};
45
38
fi;
46
39
47
- # Build and push to docker.io and GHCR umccr registries
40
+ # Build and push to GHCR umccr registry
48
41
docker build \
49
42
--platform linux/amd64 \
50
43
-f docker/${dockerfile_fn} \
51
-t ghcr.io/umccr/${docker_tag} \
52
- -t docker.io/umccr/${docker_tag} \
53
--push \
54
.;
0 commit comments