diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-12-23 10:43:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-23 16:43:13 +0100 |
commit | 86bddcc44a3b7356c7b0ccaa526dbaf72e3a9abf (patch) | |
tree | f084c3747085cf37488bec0359e6b985b6cbf42e /tools/cut_a_release.md | |
parent | de2df20d574b3a311d80d628cb7cefe20020d5e7 (diff) |
docs: update release instructions for M1 build (#13182)
Diffstat (limited to 'tools/cut_a_release.md')
-rw-r--r-- | tools/cut_a_release.md | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/cut_a_release.md b/tools/cut_a_release.md index 872f13be2..86554e6c3 100644 --- a/tools/cut_a_release.md +++ b/tools/cut_a_release.md @@ -86,7 +86,14 @@ cut.** The CI pipeline will create a release draft on GitHub (https://github.com/denoland/deno/releases). -18. Upload Apple M1 build to the release draft & to dl.deno.land. +18. Upload Apple M1 build (`deno-aarch64-apple-darwin.zip`) to the release draft + and to https://console.cloud.google.com/storage/browser/dl.deno.land + + ``` + cargo build --release + cd target/release + zip -r deno-aarch64-apple-darwin.zip deno + ``` 19. Publish the release on Github |