Skip to content

Commit f4f5be1

Browse files
committed
Minor improvements to release notes
Signed-off-by: Javier Romero <root@jromero.codes>
1 parent 1c191ac commit f4f5be1

1 file changed

Lines changed: 24 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -248,23 +248,41 @@ jobs:
248248
prerelease: true
249249
files: pack-v${{ env.PACK_VERSION }}-*
250250
body: |
251-
# pack v${{ env.PACK_VERSION }}
252-
> This is a **beta** pre-release of the Cloud Native Buildpack local CLI. This platform implementation should be relatively stable and reliable, but breaking changes in the underlying [specification](https://github.com/buildpack/spec) may be implemented without notice. Note that pack is intended for local image builds, and thus requires a Docker daemon. The [lifecycle](https://github.com/buildpack/lifecycle) should be used directly when building on cloud platforms.
251+
> This is a **beta** pre-release of the Cloud Native Buildpack local CLI. This platform implementation should be relatively stable and reliable, but breaking changes in the underlying [specification](https://github.com/buildpack/spec) may be implemented without notice.
253252
254253
## Prerequisites
255254
256-
- The [Docker daemon](https://www.docker.com/get-started) must be installed on your workstation or accessible over the network.
255+
- A container runtime such as [Docker](https://www.docker.com/get-started) or [podman](https://podman.io/getting-started/) must be available to execute builds.
257256
258257
## Install
259258
260259
#### Linux
261260
262-
##### Command
261+
##### AMD64
263262
264263
```bash
265264
(curl -sSL "https://github.com/buildpacks/pack/releases/download/v${{ env.PACK_VERSION }}/pack-v${{ env.PACK_VERSION }}-linux.tgz" | sudo tar -C /usr/local/bin/ --no-same-owner -xzv pack)
266265
```
267266
267+
##### ARM64
268+
269+
```bash
270+
(curl -sSL "https://github.com/buildpacks/pack/releases/download/v${{ env.PACK_VERSION }}/pack-v${{ env.PACK_VERSION }}-linux-arm64.tgz" | sudo tar -C /usr/local/bin/ --no-same-owner -xzv pack)
271+
```
272+
273+
#### MacOS
274+
275+
##### Intel
276+
277+
```bash
278+
(curl -sSL "https://github.com/buildpacks/pack/releases/download/v${{ env.PACK_VERSION }}/pack-v${{ env.PACK_VERSION }}-macos.tgz" | sudo tar -C /usr/local/bin/ --no-same-owner -xzv pack)
279+
```
280+
281+
##### Apple Silicon
282+
283+
```bash
284+
(curl -sSL "https://github.com/buildpacks/pack/releases/download/v${{ env.PACK_VERSION }}/pack-v${{ env.PACK_VERSION }}-macos-arm64.tgz" | sudo tar -C /usr/local/bin/ --no-same-owner -xzv pack)
285+
```
268286
#### Manually
269287
270288
1. Download the `.tgz` or `.zip` file for your platform
@@ -300,12 +318,11 @@ jobs:
300318
draft: true
301319
files: pack-v${{ env.PACK_VERSION }}-*
302320
body: |
303-
# pack v${{ env.PACK_VERSION }}
304-
> This is a **beta** release of the Cloud Native Buildpack local CLI. This platform implementation should be relatively stable and reliable, but breaking changes in the underlying [specification](https://github.com/buildpack/spec) may be implemented without notice. Note that pack is intended for local image builds, and thus requires a Docker daemon. The [lifecycle](https://github.com/buildpack/lifecycle) should be used directly when building on cloud platforms.
321+
> This is a **beta** release of the Cloud Native Buildpack local CLI. This platform implementation should be relatively stable and reliable, but breaking changes in the underlying [specification](https://github.com/buildpack/spec) may be implemented without notice.
305322
306323
## Prerequisites
307324
308-
- The [Docker daemon](https://www.docker.com/get-started) must be installed on your workstation or accessible over the network.
325+
- A container runtime such as [Docker](https://www.docker.com/get-started) or [podman](https://podman.io/getting-started/) must be available to execute builds.
309326
310327
## Install
311328

0 commit comments

Comments
 (0)