File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 77
77
with :
78
78
name : npm-package
79
79
path : dist/nativescript-android-${{steps.npm_version_output.outputs.NPM_VERSION}}.tgz
80
+ - name : Upload debug symbols
81
+ uses : actions/upload-artifact@v3
82
+ with :
83
+ name : debug-symbols
84
+ path : test-app/runtime/build/intermediates/merged_native_libs/release/mergeReleaseNativeLibs/out/lib/*
85
+
80
86
test :
81
87
name : Test
82
88
runs-on : macos-13
@@ -174,10 +180,17 @@ jobs:
174
180
with :
175
181
name : npm-package
176
182
path : dist
183
+ - uses : actions/download-artifact@v3
184
+ with :
185
+ name : debug-symbols
186
+ path : dist/debug-symbols
187
+ - name : Zip debug symbols
188
+ working-directory : dist/debug-symbols
189
+ run : zip -r debug-symbols.zip .
177
190
- name : Partial Changelog
178
191
run : npx conventional-changelog -p angular -r2 > body.md
179
192
- uses : ncipollo/release-action@v1
180
193
with :
181
- artifacts : " dist/nativescript-android-*.tgz"
194
+ artifacts : " dist/nativescript-android-*.tgz,dist/debug-symbols/debug-symbols.zip "
182
195
bodyFile : " body.md"
183
196
prerelease : ${{needs.build.outputs.npm_tag != 'latest'}}
Original file line number Diff line number Diff line change 74
74
with :
75
75
name : npm-package
76
76
path : dist/nativescript-android-${{steps.npm_version_output.outputs.NPM_VERSION}}.tgz
77
+ - name : Upload debug symbols
78
+ uses : actions/upload-artifact@v3
79
+ with :
80
+ name : debug-symbols
81
+ path : test-app/runtime/build/intermediates/merged_native_libs/release/mergeReleaseNativeLibs/out/lib/*
77
82
test :
78
83
name : Test
79
84
runs-on : macos-13
You can’t perform that action at this time.
0 commit comments