Skip to content

Commit

Permalink
Fix sign/notarize
Browse files Browse the repository at this point in the history
  • Loading branch information
prmoore77 committed Feb 28, 2024
1 parent b83e338 commit ee4fe24
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,27 @@ jobs:
generator: Ninja
run-build: true

- name: Sign and notarize the release build
- name: Sign and notarize the server release build
uses: toitlang/[email protected]
with:
certificate: ${{ secrets.APPLE_CERTIFICATE }}
certificate-password: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
username: ${{ secrets.APPLE_ID_USERNAME }}
password: ${{ secrets.APPLE_ID_PASSWORD }}
apple-team-id: ${{ secrets.APPLE_TEAM_ID }}
app-path: build/flight_sql
app-path: build/flight_sql_server
entitlements-path: macos/entitlements.plist

- name: Sign and notarize the client release build
uses: toitlang/[email protected]
with:
certificate: ${{ secrets.APPLE_CERTIFICATE }}
certificate-password: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
username: ${{ secrets.APPLE_ID_USERNAME }}
password: ${{ secrets.APPLE_ID_PASSWORD }}
apple-team-id: ${{ secrets.APPLE_TEAM_ID }}
app-path: build/flight_sql_client

- name: Zip artifacts
run: |
mv build/flight_sql_server build/flight_sql_client .
Expand Down

0 comments on commit ee4fe24

Please sign in to comment.