We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 493c5b2 + 27e453f commit 2ba8f29Copy full SHA for 2ba8f29
1 file changed
.github/workflows/publish.yml
@@ -102,10 +102,12 @@ jobs:
102
type=semver,pattern={{version}}
103
type=semver,pattern={{major}}.{{minor}}
104
type=raw,value=latest
105
- - name: 🔧 Set up Docker Buildx
+ - name: 🏗️ Set up Docker Buildx
106
+ id: buildx
107
uses: docker/setup-buildx-action@v3
108
with:
109
driver: docker-container
110
+ install: true
111
112
- name: 🐳 Build and push Docker image
113
id: push
@@ -114,7 +116,7 @@ jobs:
114
116
context: .
115
117
file: ./Dockerfile
118
push: true
- builder: default
119
+ builder: ${{ steps.buildx.outputs.name }}
120
tags: ${{ steps.meta.outputs.tags }}
121
labels: ${{ steps.meta.outputs.labels }}
122
platforms: linux/amd64,linux/arm64
0 commit comments