Commit 1d3563e 1 parent eb42967 commit 1d3563e Copy full SHA for 1d3563e
File tree 3 files changed +35
-2
lines changed
3 files changed +35
-2
lines changed Original file line number Diff line number Diff line change 10
10
- " *"
11
11
12
12
jobs :
13
- docker :
13
+ docker-amd64 :
14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
-
39
39
push : false
40
40
build-args : |
41
41
VERSION=latest
42
+ docker-arm64 :
43
+ runs-on : ubuntu-latest
44
+ steps :
45
+ -
46
+ name : Checkout
47
+ uses : actions/checkout@v3
48
+ -
49
+ name : Set up QEMU
50
+ uses : docker/setup-qemu-action@v2
51
+ -
52
+ name : Set up Docker Buildx
53
+ uses : docker/setup-buildx-action@v2
54
+
55
+ -
56
+ name : Login to GitHub Container Registry
57
+ uses : docker/login-action@v2
58
+ with :
59
+ registry : ghcr.io
60
+ username : ${{ github.repository_owner }}
61
+ password : ${{ secrets.GITHUB_TOKEN }}
62
+ -
63
+ name : Build
64
+ uses : docker/build-push-action@v3
65
+ with :
66
+ context : .
67
+ platforms : linux/arm64
68
+ push : false
69
+ build-args : |
70
+ VERSION=latest
Original file line number Diff line number Diff line change 43
43
uses : docker/build-push-action@v3
44
44
with :
45
45
context : .
46
- platforms : linux/amd64
46
+ platforms : linux/amd64,linux/arm64
47
47
push : true
48
48
build-args : |
49
49
VERSION=${{ github.ref_name }}
Original file line number Diff line number Diff line change
1
+ 1.0.5.1 (2023-12-15)
2
+
3
+ * testing with arm64 build
4
+
1
5
1.0.5 (2023-12-06)
2
6
3
7
* solc 0.8.23
You can’t perform that action at this time.
0 commit comments