File tree Expand file tree Collapse file tree 1 file changed +25
-2
lines changed Expand file tree Collapse file tree 1 file changed +25
-2
lines changed Original file line number Diff line number Diff line change 5
5
branches : pi
6
6
7
7
jobs :
8
- main :
8
+ build-amd64 :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- name : Set up QEMU
27
27
- name : Show Python version
28
28
run : python -c "import sys; print(sys.version)"
29
29
- name : Build and push
30
- run : tools/push -p linux/amd64 -p linux/arm64 utils xud
30
+ run : tools/push -p linux/amd64 utils xud
31
+ build-arm64 :
32
+ runs-on : ubuntu-latest
33
+ steps :
34
+ - name : Set up QEMU
35
+ uses : docker/setup-qemu-action@v1
36
+ - name : Set up Docker Buildx
37
+ uses : docker/setup-buildx-action@v1
38
+ - name : Login to DockerHub
39
+ uses : docker/login-action@v1
40
+ with :
41
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
42
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
43
+ - name : Checkout
44
+ uses : actions/checkout@v2
45
+ - name : Set up Python 3.9
46
+ uses : actions/setup-python@v2
47
+ with :
48
+ python-version : ' 3.9'
49
+ architecture : ' x64'
50
+ - name : Show Python version
51
+ run : python -c "import sys; print(sys.version)"
52
+ - name : Build and push
53
+ run : tools/push -p linux/arm64 utils xud
You can’t perform that action at this time.
0 commit comments