Skip to content

Commit

Permalink
Disable mac binary notarization. (#899)
Browse files Browse the repository at this point in the history
* Disable the mac code signing step since auth is failing during notarization right now.

* Just rip out all the gon steps and do a build-release-zip so we've got the right files at least.
  • Loading branch information
dwedul-figure authored Jun 27, 2022
1 parent 5ebea34 commit 46d9b88
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,23 +77,9 @@ jobs:
go-version: ${{ needs.build_init.outputs.go_version }}
- name: Build osx binary
run: |
make WITH_CLEVELDB=false WITH_ROCKSDB=false VERSION=${{ needs.build_init.outputs.version }} build-release-bin build-release-libwasm
make WITH_CLEVELDB=false WITH_ROCKSDB=false VERSION=${{ needs.build_init.outputs.version }} build-release-zip
- name: Provenanced version
run: build/provenanced version --long
- name: Import Code-Signing Certificates
uses: Apple-Actions/import-codesign-certs@v1
with:
p12-file-base64: ${{ secrets.CODESIGNING_P12_BASE64 }}
p12-password: ${{ secrets.CODESIGNING_P12_PASSWORD }}
- name: Sign the mac binaries with Gon
env:
AC_USERNAME: ${{ secrets.AC_USERNAME }}
AC_PASSWORD: ${{ secrets.AC_PASSWORD }}
run: |
gon -log-level=info -log-json ./gon.json
- name: Fix zip structure for cosmovisor
run: |
make VERSION=${{ needs.build_init.outputs.version }} build-release-rezip
- uses: actions/upload-artifact@v3
with:
name: osx-zip
Expand Down

0 comments on commit 46d9b88

Please sign in to comment.