From 1f42e17a0524d917861027a8acef054e8fbb05af Mon Sep 17 00:00:00 2001
From: Joseph Donofry <joedonofry@gmail.com>
Date: Sat, 24 Sep 2022 17:43:06 -0400
Subject: [PATCH] Add macos notarize logs as artifacts

---
 .ci/macos/notarize.sh | 4 ++--
 .gitlab-ci.yml        | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.ci/macos/notarize.sh b/.ci/macos/notarize.sh
index 111610a85..1e1b20499 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 89157309d..2daee8942 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -96,6 +96,7 @@ build-macos:
   artifacts:
     paths:
       - build/nheko.app
+      - /tmp/notarize*
     name: nheko-${CI_COMMIT_SHORT_SHA}-macos-app
     expose_as: 'macos-app'
     public: false
-- 
GitLab