We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f880c33 commit ae86e53Copy full SHA for ae86e53
.github/workflows/pre-release.yml
@@ -109,6 +109,20 @@ jobs:
109
echo "APP_VERSION=$APP_VERSION" >> $GITHUB_ENV
110
echo "APP_BUILD=$APP_BUILD" >> $GITHUB_ENV
111
112
+ ############################
113
+ # Upload dSYMs Artifact
114
115
+ - name: Upload dSYMs Artifact
116
+ uses: actions/upload-artifact@v4
117
+ with:
118
+ name: "CodeEdit-${{ env.APP_BUILD }}-dSYMs"
119
+ path: "${{ RUNNER.TEMP }}/CodeEdit.xcarchive/dSYMs"
120
+ if-no-files-found: error
121
+ # overwrite files for the same build number
122
+ overwrite: true
123
+ # these can be big, use maximum compression
124
+ compression-level: 9
125
+
126
############################
127
# Sparkle Appcast
128
0 commit comments