File tree 3 files changed +18
-11
lines changed 3 files changed +18
-11
lines changed Original file line number Diff line number Diff line change @@ -102,9 +102,9 @@ jobs:
102
102
uses : actions/upload-artifact@v4
103
103
if : ${{ success() }}
104
104
with :
105
- name : DLTViewer-${{ matrix.macos }} -${{ matrix.abi }}
106
- path : build/dist/DLTViewer*.tgz
107
-
105
+ name : DLTViewer-MacOS -${{ matrix.abi }}
106
+ path : |
107
+ build/install/DLTViewer.*
108
108
109
109
buildLinux :
110
110
name : Build ${{ matrix.ubuntu }}
Original file line number Diff line number Diff line change 36
36
- name : Build project
37
37
run : scripts/darwin/build.sh
38
38
- name : Archive artifact
39
- run : zip DLT-macOS-${{ matrix.abi }}.zip -r build/dist
39
+ run : zip DLT-macOS-${{ matrix.abi }}.zip -r build/install -i 'DLTViewer*'
40
40
- name : Upload DLT artifact
41
41
uses : actions/upload-artifact@v4
42
42
with :
@@ -118,12 +118,14 @@ jobs:
118
118
uses : actions/download-artifact@v4
119
119
with :
120
120
name : DLT-Linux
121
- - name : Download DLT macOS artifacts
121
+ - name : Download DLT macOS artifacts arm64
122
122
uses : actions/download-artifact@v4
123
123
with :
124
- name : |
125
- DLT-Mac-x86
126
- DLT-Mac-arm64
124
+ name : DLT-Mac-arm64
125
+ - name : Download DLT macOS artifacts x86
126
+ uses : actions/download-artifact@v4
127
+ with :
128
+ name : DLT-Mac-x86
127
129
- name : Download DLT Windows parser artifacts
128
130
uses : actions/download-artifact@v4
129
131
with :
Original file line number Diff line number Diff line change @@ -66,6 +66,11 @@ cd "${BUILD_DIR}"
66
66
FULL_VERSION=$( cat " ${BUILD_DIR} /full_version.txt" )
67
67
echo " FULL_VERSION=${FULL_VERSION} "
68
68
69
- mkdir -p dist
70
- cp ../scripts/darwin/install.md dist
71
- tar -czvf " dist/DLTViewer-${FULL_VERSION} .tgz" -C ${INSTALL_DIR} .
69
+ echo " Artifacts are here"
70
+ ls ${INSTALL_DIR}
71
+ find . -name " DLTViewer*.dmg"
72
+ find . -name " DLTViewer.*"
73
+ #
74
+ # mkdir -p dist
75
+ # cp ../scripts/darwin/install.md dist
76
+ # tar -czvf "dist/DLTViewer-${FULL_VERSION}.tgz" -C "${INSTALL_DIR}" .
You can’t perform that action at this time.
0 commit comments