We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ab25eb commit e15de12Copy full SHA for e15de12
.github/workflows/gnd-binary-build.yml
@@ -101,6 +101,15 @@ jobs:
101
LIBPQ_DIR: ${{ format('{0}/vcpkg/installed/x64-windows', github.workspace) }}
102
VCPKGRS_DYNAMIC: 1
103
104
+ - name: Sign macOS binary
105
+ if: startsWith(matrix.runner, 'macos')
106
+ uses: lando/code-sign-action@v3
107
+ with:
108
+ file: target/${{ matrix.target }}/release/gnd
109
+ certificate-data: ${{ secrets.APPLE_CERT_DATA }}
110
+ certificate-password: ${{ secrets.APPLE_CERT_PASSWORD }}
111
+ certificate-id: ${{ secrets.APPLE_TEAM_ID }}
112
+
113
- name: Prepare binary (Unix)
114
if: ${{ !startsWith(matrix.runner, 'windows') }}
115
run: |
0 commit comments