We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1ea3b3 commit ed9fc45Copy full SHA for ed9fc45
.github/workflows/build-base-image.yml
@@ -31,10 +31,20 @@ jobs:
31
username: ${{ secrets.DOCKERHUB_USERNAME }}
32
password: ${{ secrets.DOCKERHUB_TOKEN }}
33
34
+ - name: Log in to GitHub Container Registry
35
+ uses: docker/login-action@v3
36
+ with:
37
+ registry: ghcr.io
38
+ username: ${{ github.actor }}
39
+ password: ${{ secrets.GITHUB_TOKEN }}
40
+
41
- name: Build and push base image
42
uses: docker/build-push-action@v6
43
with:
44
context: .
45
file: .github/Dockerfile.base
46
push: true
- tags: bdrabczuk/neurospin:champollion-base
47
+ tags: |
48
+ bdrabczuk/champollion-base:latest
49
+ ghcr.io/bdrabczuk/champollion-base:latest
50
0 commit comments