From 13652e2f21f7533c9e88540fffee09de78b73e9d Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Wed, 25 Jan 2023 10:29:31 -0500 Subject: [PATCH 1/3] revised download location in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a260b4aa..25cce9c9 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ You can be up and sharing using the `zrok.io` service in minutes. Here is a syno ### First-time Setup -* Download the binary for your platform [here](https://zrok.io) +* Download the binary for your platform [here](https://github.com/openziti/zrok/releases) * `zrok invite` to create an account with the service * `zrok enable` to enable your shell environment for sharing with the service From 637cf0806538df63cccb70ade6b7838934e6d746 Mon Sep 17 00:00:00 2001 From: Ken Bingham Date: Wed, 25 Jan 2023 11:36:47 -0500 Subject: [PATCH 2/3] fix relative link to self-hosting guide --- docs/v0.3_nginx_tls_guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/v0.3_nginx_tls_guide.md b/docs/v0.3_nginx_tls_guide.md index b5878273..68f2fd48 100644 --- a/docs/v0.3_nginx_tls_guide.md +++ b/docs/v0.3_nginx_tls_guide.md @@ -1,6 +1,6 @@ # Nginx Reverse Proxy for zrok -I'll assume you have a running zrok controller and public frontend and wish to front both with Nginx providing server TLS. Go back to [the hosting quickstart](v0.3_quickstart.md) if you still need to spin those up. +I'll assume you have a running zrok controller and public frontend and wish to front both with Nginx providing server TLS. Go back to [the self-hosting guide](v0.3_self_hosting_guide.md) if you still need to spin those up. ## Choose a Reverse Proxy Address From 8f026204d2345125c03d097966f55b3c7b259089 Mon Sep 17 00:00:00 2001 From: Cam Otts Date: Wed, 25 Jan 2023 15:44:48 -0600 Subject: [PATCH 3/3] gon changes to enable notarization --- build/gon-amd64.hcl | 7 +++++-- build/gon-arm64.hcl | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/build/gon-amd64.hcl b/build/gon-amd64.hcl index e63595b9..2df65079 100644 --- a/build/gon-amd64.hcl +++ b/build/gon-amd64.hcl @@ -2,10 +2,13 @@ source = ["dist/zrok-amd64_darwin_amd64_v1/zrok"] bundle_id = "io.zrok.zrok" apple_id { - username = "@env:AC_USERNAME" password = "@env:AC_PASSWORD" } sign { - application_identity = "Apple Distribution: NetFoundry Inc" + application_identity = "Developer ID Application: NetFoundry Inc" } + +zip { + output_path = "dist/zrok-amd64_darwin_amd64_v1/zrok.zip" +} \ No newline at end of file diff --git a/build/gon-arm64.hcl b/build/gon-arm64.hcl index d3ac76d4..690d745c 100644 --- a/build/gon-arm64.hcl +++ b/build/gon-arm64.hcl @@ -2,10 +2,13 @@ source = ["dist/zrok-arm64_darwin_arm64/zrok"] bundle_id = "io.zrok.zrok" apple_id { - username = "@env:AC_USERNAME" password = "@env:AC_PASSWORD" } sign { - application_identity = "Apple Distribution: NetFoundry Inc" + application_identity = "Developer ID Application: NetFoundry Inc" } + +zip { + output_path = "dist/zrok-arm64_darwin_arm64/zrok.zip" +} \ No newline at end of file