diff --git a/.ci/macos/notarize.sh b/.ci/macos/notarize.sh
index 111610a858793543cc61a7b342566c5d34970410..1e1b20499f233f0c62c693b0399d60097409d4b5 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 89157309d5dad698382f51a4d15d840ee8d66060..2daee89422573598e79e664e29e2cd48f4a5cb77 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