From a2529febbaaced7031fd5f3a15d571a21391fca2 Mon Sep 17 00:00:00 2001 From: Jason Dove Date: Sun, 26 Jun 2022 08:30:32 -0500 Subject: [PATCH] use brew for gon --- .github/workflows/artifacts.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 7ce8b362b..917897145 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -115,9 +115,9 @@ jobs: - name: Notarize shell: bash run: | - curl -o gon.zip -L -s "https://github.com/mitchellh/gon/releases/latest/download/gon_macos.zip" - unzip -o -q gon.zip - ./gon -log-level=debug -log-json ./gon.json + brew tap mitchellh/gon + brew install mitchellh/gon/gon + gon -log-level=debug -log-json ./gon.json env: AC_USERNAME: ${{ secrets.ac_username }} AC_PASSWORD: ${{ secrets.ac_password }}