File tree 3 files changed +9
-5
lines changed
3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -90,10 +90,10 @@ jobs:
90
90
91
91
- name : Prepare files
92
92
run : |
93
- mkdir -p build/linux/{amd64,arm64v8 }/
93
+ mkdir -p build/linux/{amd64,arm64 }/
94
94
mv artifacts/am-linux-x86_64/am build/linux/amd64/am
95
- mv artifacts/am-linux-aarch64/am build/linux/arm64v8 /am
96
- chmod u+x build/linux/{amd64,arm64v8 }/am
95
+ mv artifacts/am-linux-aarch64/am build/linux/arm64 /am
96
+ chmod u+x build/linux/{amd64,arm64 }/am
97
97
98
98
- name : Set up QEMU
99
99
uses : docker/setup-qemu-action@v2
@@ -112,10 +112,11 @@ jobs:
112
112
with :
113
113
file : Dockerfile.release
114
114
context : build
115
- platforms : linux/amd64,linux/arm64v8
115
+ platforms : linux/amd64,linux/arm64
116
116
push : true
117
117
tags : |
118
118
fiberplane/am:v${{ needs.validate-version.outputs.version }}
119
+ fiberplane/am:latest
119
120
cache-from : type=gha
120
121
cache-to : type=gha,mode=max
121
122
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.3.0]
11
+
10
12
- SHA-256 checksums are now provided for all artifact downloads (#101 )
11
13
- Added self updater (#102 )
12
14
- Use ` clap-markdown ` fork that enables formatting by display name (#103 )
@@ -15,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
17
- The generated Prometheus config now gets stored in a unique, temporary location (#113 )
16
18
- Added new subcommand ` init ` to create a config file interactively (#117 )
17
19
- ` am ` is now available as a multi-arch Docker container on [ Docker Hub] ( https://hub.docker.com/repository/docker/fiberplane/am/general ) (#118 )
20
+ - Fix multiarch docker image for arm64 users (#125 )
18
21
19
22
## [ 0.2.1]
20
23
Original file line number Diff line number Diff line change 2
2
# Use the context that contains the am binaries in the `$OS/$ARCH/am` structure.
3
3
# NOTE: Windows is currently not supported
4
4
5
- FROM ${TARGETARCH}/ debian:bookworm-slim
5
+ FROM debian:bookworm-slim
6
6
7
7
# These variables _should_ be set by docker buildx
8
8
ARG TARGETARCH
You can’t perform that action at this time.
0 commit comments