summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2022-09-24 17:43:06 -0400
committerJoseph Donofry <joedonofry@gmail.com>2022-09-24 17:43:06 -0400
commit3c21e09caf7317a138a8c69854ab7511d303e004 (patch)
tree5868104c32ac7925c41046f320ce7b3126a5165d
parentFix crash when deleting room summary (diff)
downloadnheko-3c21e09caf7317a138a8c69854ab7511d303e004.tar.xz
Add macos notarize logs as artifacts
-rwxr-xr-x.ci/macos/notarize.sh4
-rw-r--r--.gitlab-ci.yml1
2 files changed, 3 insertions, 2 deletions
diff --git a/.ci/macos/notarize.sh b/.ci/macos/notarize.sh
index 111610a8..1e1b2049 100755
--- a/.ci/macos/notarize.sh
+++ b/.ci/macos/notarize.sh
@@ -36,8 +36,8 @@ done
 
 codesign --force --timestamp --options=runtime --sign "${APPLE_DEV_IDENTITY}" "build/nheko.app"
 
-NOTARIZE_SUBMIT_LOG=$(mktemp -t notarize-submit)
-NOTARIZE_STATUS_LOG=$(mktemp -t notarize-status)
+NOTARIZE_SUBMIT_LOG=$(mktemp /tmp/notarize-submit.XXXXXX)
+NOTARIZE_STATUS_LOG=$(mktemp /tmp/notarize-status.XXXXXX)
 
 finish() {
   rm "$NOTARIZE_SUBMIT_LOG" "$NOTARIZE_STATUS_LOG"
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 087b68d3..3df01f93 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -130,6 +130,7 @@ build-macos:
   artifacts:
     paths:
       - build/nheko.app
+      - /tmp/notarize*
     name: nheko-${CI_COMMIT_SHORT_SHA}-macos-app
     expose_as: 'macos-app'
     public: false