Commit 7df87c7c authored by nanahira's avatar nanahira

add notarize

parent 81195d56
#!/bin/bash
set -x
set -o errexit
BUNDLE_ID="com.mycard.mycard"
APP_PATH=$(ls -1 dist/*.dmg | head -n 1)
xcrun altool --notarize-app --primary-bundle-id "$BUNDLE_ID" --username "$MACOS_NOTARIZE_USERNAME" --password "$MACOS_NOTARIZE_PASSWORD" --asc-provider "$MACOS_ASC_PROVIDER" -t osx --file "$APP_PATH"
......@@ -78,6 +78,16 @@ macOS:
paths:
- dist/
macOS_notarize:
stage: deploy
dependencies:
- macOS
tags:
- macOS
script: ./.ci/macos-notarize.sh
only:
- tags
upload_to_minio:
stage: deploy
dependencies:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment