Skip to content

Commit

Permalink
Fix Info.plist details for macOS exports
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriSizov committed Jan 25, 2025
1 parent 6298d77 commit 7bc9809
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/actions/sign-extension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ runs:
if: ${{ env.SCONS_PLATFORM == 'macos' && inputs.codesign == 'true' }}
shell: bash
env:
RESOURCES_PATH: '${{ inputs.directory }}/${{ inputs.target-name }}/Resources'
RESOURCES_PATH: '${{ inputs.directory }}/${{ inputs.target-name }}.framework/Resources'
run: |
mkdir $RESOURCES_PATH
sed 's/\${FRAMEWORK_NAME}/${{ inputs.target-name }}/g' $GITHUB_ACTION_PATH/macos/Info.plist > $RESOURCES_PATH/Info.plist
Expand All @@ -71,5 +71,5 @@ runs:
APPLE_DEV_APP_ID: ${{ inputs.apple-dev-app-id }}
APPLE_DEV_TEAM_ID: ${{ inputs.apple-dev-team-id }}
APPLE_DEV_PASSWORD: ${{ inputs.apple-dev-password }}
FRAMEWORK_PATH: ${{ inputs.directory }}/${{ inputs.target-name }}
FRAMEWORK_PATH: ${{ inputs.directory }}/${{ inputs.target-name }}.framework
run: $GITHUB_ACTION_PATH/macos/sign.sh
4 changes: 2 additions & 2 deletions .github/workflows/extension-build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
with:
codesign: true
directory: bin
target-name: libgdsion.macos.template_release.framework
target-name: libgdsion.macos.template_release
apple-dev-id: ${{ secrets.APPLE_DEV_ID }}
apple-dev-app-id: ${{ secrets.APPLE_DEV_APP_ID }}
apple-dev-team-id: ${{ secrets.APPLE_DEV_TEAM_ID }}
Expand All @@ -77,7 +77,7 @@ jobs:
with:
codesign: true
directory: bin
target-name: libgdsion.macos.template_debug.framework
target-name: libgdsion.macos.template_debug
apple-dev-id: ${{ secrets.APPLE_DEV_ID }}
apple-dev-app-id: ${{ secrets.APPLE_DEV_APP_ID }}
apple-dev-team-id: ${{ secrets.APPLE_DEV_TEAM_ID }}
Expand Down

0 comments on commit 7bc9809

Please sign in to comment.