We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7beb3f1 commit faf5f91Copy full SHA for faf5f91
.github/workflows/docker-deploy.yml
@@ -14,14 +14,12 @@ jobs:
14
platforms: 'arm64,arm'
15
- name: Setup Buildx
16
uses: docker/setup-buildx-action@v2
17
- - name: Login to DockerHub
+ - name: Login to DockerRegistry
18
uses: docker/login-action@v2
19
with:
20
registry: ghcr.io
21
username: ${{ github.actor }}
22
password: ${{ secrets.GITHUB_TOKEN }}
23
- name: Build and push
24
- uses: docker/build-push-action@v3
25
- with:
26
- push: true
27
- tags: ghcr.io/bbzblit/m293-project/m293-project:latest
+ run: |
+ docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/bbzblit/m293-project/app:latest --push .
0 commit comments