diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 11b9335..c020b41 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,7 +18,7 @@ jobs: with: go-version: 1.20.x - name: Set up Gon - run: brew tap mitchellh/gon && brew install mitchellh/gon/gon + run: brew tap conductorone/gon && brew install conductorone/gon/gon - name: Import Keychain Certs uses: apple-actions/import-codesign-certs@v1 with: @@ -32,6 +32,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.RELENG_GITHUB_TOKEN }} AC_PASSWORD: ${{ secrets.AC_PASSWORD }} + AC_PROVIDER: ${{ secrets.AC_PROVIDER }} goreleaser-docker: runs-on: ubuntu-latest steps: diff --git a/.gon-amd64.json b/.gon-amd64.json index 1fa3104..b90a325 100644 --- a/.gon-amd64.json +++ b/.gon-amd64.json @@ -2,8 +2,7 @@ "source": ["./dist/macos-amd64_darwin_amd64_v1/baton-xero"], "bundle_id": "com.conductorone.baton-xero", "apple_id": { - "username" : "justin.gallardo@conductorone.com", - "password": "@env:AC_PASSWORD" + "username" : "justin.gallardo@conductorone.com" }, "sign": { "application_identity": "Developer ID Application: Justin Gallardo (858DKH55XL)" diff --git a/.gon-arm64.json b/.gon-arm64.json index 647d064..9934624 100644 --- a/.gon-arm64.json +++ b/.gon-arm64.json @@ -2,8 +2,7 @@ "source": ["./dist/macos-arm64_darwin_arm64/baton-xero"], "bundle_id": "com.conductorone.baton-xero", "apple_id": { - "username" : "justin.gallardo@conductorone.com", - "password": "@env:AC_PASSWORD" + "username" : "justin.gallardo@conductorone.com" }, "sign": { "application_identity": "Developer ID Application: Justin Gallardo (858DKH55XL)" diff --git a/go.mod b/go.mod index f91d8e1..81d0b6d 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,6 @@ require ( github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 github.com/spf13/cobra v1.7.0 go.uber.org/zap v1.26.0 - golang.org/x/exp v0.0.0-20231006140011-7918f672742d golang.org/x/text v0.13.0 google.golang.org/grpc v1.59.0 ) @@ -71,6 +70,7 @@ require ( go.uber.org/multierr v1.11.0 // indirect go.uber.org/ratelimit v0.3.0 // indirect golang.org/x/crypto v0.14.0 // indirect + golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect golang.org/x/net v0.17.0 // indirect golang.org/x/oauth2 v0.13.0 // indirect golang.org/x/sync v0.4.0 // indirect