Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Yshayy authored Aug 27, 2023
1 parent 9eb8e52 commit bd13f5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gh-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
run: mkdir preevy-bin && depot build --project ${{ vars.DEPOT_PROJECT_ID }} --build-arg CLI_TARGET=${{ matrix.platform }}-${{ matrix.arch }} -f Dockerfile.cli --target=cli --output=type=tar,dest=./preevy-bin/preevy-${{ matrix.platform }}-${{ matrix.arch }}.tar.gz --progress=plain --platform=linux/${{ matrix.arch == 'x64' && 'amd64' || matrix.arch }} .

- name: Sign mac binaries
if: ${{ matrix.platform == "macos" }}
if: ${{ matrix.platform == 'macos' }}
env:
CERT_DATA: ${{ secrets.APPLE_CERT_DATA }}
CERT_PASS: ${{ secrets.APPLE_CERT_PASS }}
CERT_CN: ${{ variables.APPLE_CERT_CN }}
CERT_CN: ${{ vars.APPLE_CERT_CN }}
run: |
tar -xzf preevy-${{ matrix.platform }}-${{ matrix.arch }}.tar.gz
codesign --remove-signature ./preevy
Expand Down

0 comments on commit bd13f5f

Please sign in to comment.