Skip to content

Commit

Permalink
ci: add back apple notarization
Browse files Browse the repository at this point in the history
  • Loading branch information
variar committed Nov 15, 2024
1 parent 0d3653a commit 1f5adc1
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions .github/actions/agent-package-mac/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,37 +83,37 @@ runs:
pkgutil --flatten ./output/klogg_product_pkg ./output/klogg-${{ env.KLOGG_VERSION }}-OSX-flatten.pkg
productsign --sign "${{ env.KLOGG_INSTALLERSIGN }}" --timestamp ./output/klogg-${{ env.KLOGG_VERSION }}-OSX-flatten.pkg ./packages/${{ env.KLOGG_PKG }}
#- name: "Mac notarize DMG"
# if: ${{ github.event_name != 'pull_request' }}
# uses: variar/[email protected]
# with:
# verbose: true
# product-path: "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_DMG }}"
# primary-bundle-id: "dev.filimonov.klogg"
# appstore-connect-username: ${{ inputs.appstore-connect-username }}
# appstore-connect-password: ${{ inputs.appstore-connect-password }}
- name: "Mac notarize DMG"
if: ${{ github.event_name != 'pull_request' }}
uses: variar/[email protected]
with:
verbose: true
product-path: "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_DMG }}"
primary-bundle-id: "dev.filimonov.klogg"
appstore-connect-username: ${{ inputs.appstore-connect-username }}
appstore-connect-password: ${{ inputs.appstore-connect-password }}

#- name: "Mac staple DMG"
# if: ${{ github.event_name != 'pull_request' }}
# uses: devbotsxyz/xcode-staple@v1
# with:
# product-path: "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_DMG }}"
- name: "Mac staple DMG"
if: ${{ github.event_name != 'pull_request' }}
uses: BoundfoxStudios/action-xcode-staple@v1
with:
product-path: "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_DMG }}"

#- name: "Mac notarize PKG"
# if: ${{ github.event_name != 'pull_request' }}
# uses: variar/[email protected]
# with:
# verbose: true
# product-path: "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_PKG }}"
# primary-bundle-id: "dev.filimonov.klogg"
# appstore-connect-username: ${{ inputs.appstore-connect-username }}
# appstore-connect-password: ${{ inputs.appstore-connect-password }}
- name: "Mac notarize PKG"
if: ${{ github.event_name != 'pull_request' }}
uses: variar/[email protected]
with:
verbose: true
product-path: "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_PKG }}"
primary-bundle-id: "dev.filimonov.klogg"
appstore-connect-username: ${{ inputs.appstore-connect-username }}
appstore-connect-password: ${{ inputs.appstore-connect-password }}

#- name: "Mac staple PKG"
# if: ${{ github.event_name != 'pull_request' }}
# uses: devbotsxyz/xcode-staple@v1
# with:
# product-path: "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_PKG }}"
- name: "Mac staple PKG"
if: ${{ github.event_name != 'pull_request' }}
uses: BoundfoxStudios/action-xcode-staple@v1
with:
product-path: "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_PKG }}"

- name: Mac symbols
shell: sh
Expand Down

0 comments on commit 1f5adc1

Please sign in to comment.