File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -215,11 +215,26 @@ jobs:
215
215
otool -L build/install/DLTViewer.app/Contents/MacOS/dlt-viewer
216
216
otool -l build/install/DLTViewer.app/Contents/MacOS/dlt-viewer | grep -A2 LC_RPATH
217
217
echo "Deploying DLTViewer.app with macdeployqt"
218
- $QT_ROOT_DIR/bin/macdeployqt build/install/DLTViewer.app -verbose=1 -dmg \
218
+ $QT_ROOT_DIR/bin/macdeployqt build/install/DLTViewer.app -verbose=2 -dmg \
219
219
-libpath=$(pwd)/build/install/DLTViewer.app/Contents/Frameworks \
220
220
-executable=$(pwd)/build/install/DLTViewer.app/Contents/MacOS/dlt-viewer
221
221
222
- - name : Misc
222
+ - name : Misc debugging
223
223
run : |
224
224
brew install tree
225
225
tree build/install/DLTViewer.app
226
+
227
+ - name : Compress artifacts
228
+ run : |
229
+ cd ($pwd)/build
230
+ mkdir -p dist
231
+ tar -czvf "dist/DLTViewer-qt6-macos15.tgz" -C $(pwd)/install .
232
+
233
+ - name : Upload artifacts
234
+ uses : actions/upload-artifact@v4
235
+ if : ${{ success() }}
236
+ with :
237
+ name : DLTViewer-macos15-qt6
238
+ path : build/dist/DLTViewer*.tgz
239
+
240
+
You can’t perform that action at this time.
0 commit comments