-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
comment out other code-signing stuff
- Loading branch information
1 parent
e3669be
commit 613f627
Showing
1 changed file
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,12 +104,12 @@ jobs: | |
- name: Cache the build | ||
uses: mozilla-actions/[email protected] | ||
|
||
- name: Import Certificates (macOS) | ||
uses: apple-actions/import-codesign-certs@v3 | ||
if: ${{ matrix.name == 'macOS' }} | ||
with: | ||
p12-file-base64: ${{ secrets.DEV_ID_APP_CERT }} | ||
p12-password: ${{ secrets.DEV_ID_APP_PASSWORD }} | ||
# - name: Import Certificates (macOS) | ||
# uses: apple-actions/import-codesign-certs@v3 | ||
# if: ${{ matrix.name == 'macOS' }} | ||
# with: | ||
# p12-file-base64: ${{ secrets.DEV_ID_APP_CERT }} | ||
# p12-password: ${{ secrets.DEV_ID_APP_PASSWORD }} | ||
|
||
- name: Configure | ||
shell: bash | ||
|
@@ -147,13 +147,13 @@ jobs: | |
7z x pluginval_${{ matrix.name }}.zip | ||
${{ matrix.pluginval-binary }} --strictness-level 10 --verbose --validate "${{ env.VST3_PATH }}" | ||
- name: Codesign (macOS) | ||
if: ${{ matrix.name == 'macOS' }} | ||
run: | | ||
# Each plugin must be code signed | ||
codesign --force -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" -v "${{ env.VST3_PATH }}" --deep --strict --options=runtime --timestamp | ||
codesign --force -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" -v "${{ env.AU_PATH }}" --deep --strict --options=runtime --timestamp | ||
codesign --force -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" -v "${{ env.STANDALONE_PATH }}" --deep --strict --options=runtime --timestamp | ||
# - name: Codesign (macOS) | ||
# if: ${{ matrix.name == 'macOS' }} | ||
# run: | | ||
# # Each plugin must be code signed | ||
# codesign --force -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" -v "${{ env.VST3_PATH }}" --deep --strict --options=runtime --timestamp | ||
# codesign --force -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" -v "${{ env.AU_PATH }}" --deep --strict --options=runtime --timestamp | ||
# codesign --force -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" -v "${{ env.STANDALONE_PATH }}" --deep --strict --options=runtime --timestamp | ||
|
||
- name: Add Custom Icons (macOS) | ||
if: ${{ matrix.name == 'macOS' }} | ||
|
@@ -190,8 +190,8 @@ jobs: | |
# Run appdmg to create the .dmg | ||
cd packaging && appdmg dmg.json "${{ env.ARTIFACT_NAME}}.dmg" | ||
codesign -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" --timestamp -i ${{ env.BUNDLE_ID }} --force "${{ env.ARTIFACT_NAME }}.dmg" | ||
xcrun notarytool submit "${{ env.ARTIFACT_NAME }}.dmg" --apple-id ${{ secrets.NOTARIZATION_USERNAME }} --password ${{ secrets.NOTARIZATION_PASSWORD }} --team-id ${{ secrets.TEAM_ID }} --wait | ||
# codesign -s "${{ secrets.DEVELOPER_ID_APPLICATION}}" --timestamp -i ${{ env.BUNDLE_ID }} --force "${{ env.ARTIFACT_NAME }}.dmg" | ||
# xcrun notarytool submit "${{ env.ARTIFACT_NAME }}.dmg" --apple-id ${{ secrets.NOTARIZATION_USERNAME }} --password ${{ secrets.NOTARIZATION_PASSWORD }} --team-id ${{ secrets.TEAM_ID }} --wait | ||
xcrun stapler staple "${{ env.ARTIFACT_NAME }}.dmg" | ||
- name: Zip | ||
|