|
@@ -26,6 +26,9 @@ jobs:
|
26
|
26
|
uses: actions/checkout@v2
|
27
|
27
|
- name: Set env
|
28
|
28
|
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
29
|
+ - name: Set up Docker Buildx
|
|
30
|
+ id: buildx
|
|
31
|
+ uses: docker/setup-buildx-action@v1
|
29
|
32
|
- name: Log in to Docker Hub
|
30
|
33
|
uses: docker/login-action@v1
|
31
|
34
|
with:
|
|
@@ -35,4 +38,5 @@ jobs:
|
35
|
38
|
uses: docker/build-push-action@v2
|
36
|
39
|
with:
|
37
|
40
|
push: true
|
38
|
|
- tags: lovasoa/wbo:latest,lovasoa/wbo:${{ env.RELEASE_VERSION }}
|
|
41
|
+ tags: lovasoa/wbo:latest,lovasoa/wbo:${{ env.RELEASE_VERSION }}
|
|
42
|
+ platforms: linux/amd64,linux/arm64,linux/arm/v7
|