File tree 1 file changed +24
-1
lines changed 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change 18
18
with :
19
19
node-version : ' 16'
20
20
21
+ - name : Set up QEMU
22
+ uses : docker/setup-qemu-action@master
23
+ with :
24
+ platforms : all
25
+
26
+ - name : Set up Docker Build
27
+ uses : docker/setup-buildx-action@v2
28
+
29
+ - name : Login to DockerHub
30
+ uses : docker/login-action@v2
31
+ with :
32
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
33
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
34
+
21
35
- run : cd client && npm install --force
22
36
- run : npm run build && mv client/build .
23
37
37
51
prerelease : false
38
52
title : Release ${{ steps.get_version.outputs.version }}
39
53
files : |
40
- ./MySpeed-*.zip
54
+ ./MySpeed-*.zip
55
+
56
+ - name : Build and push
57
+ uses : docker/build-push-action@v3
58
+ with :
59
+ push : true
60
+ platforms : linux/amd64,linux/arm64,linux/arm/v7
61
+ tags : |
62
+ germannewsmaker/myspeed:latest
63
+ germannewsmaker/myspeed:${{ steps.get_version.outputs.version }}
You can’t perform that action at this time.
0 commit comments