Skip to content

Commit

Permalink
chore: add metadat file before sign
Browse files Browse the repository at this point in the history
  • Loading branch information
negar-abbasi authored and aorumbayev committed Sep 15, 2024
1 parent 572ea5b commit 38bdd37
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/build-binaries/macos/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ runs:
APPLE_CERT_ID: ${{ inputs.apple_cert_id }}
APPLE_BUNDLE_ID: ${{ inputs.apple_bundle_id }}

- name: Add metadata to binary
shell: bash
run: |
echo brew > ${{ github.workspace }}/dist/algokit/_internal/algokit/resources/distribution-method
# Workaround an issue with PyInstaller where Python.framework was incorrectly signed during the build
- name: Codesign python.framework
shell: bash
Expand All @@ -57,7 +62,6 @@ runs:
shell: bash
run: |
cd dist/algokit/
echo brew > ./_internal/algokit/resources/distribution-method
tar -zcf ${{ inputs.artifacts_dir }}/${{ inputs.package_name }}-brew.tar.gz *
cd ../..
Expand Down

0 comments on commit 38bdd37

Please sign in to comment.