File tree 2 files changed +12
-12
lines changed
2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -61,14 +61,14 @@ jobs:
61
61
- name : Build
62
62
run : npm run build-ios
63
63
- name : Upload npm package artifact
64
- uses : actions/upload-artifact@v3
64
+ uses : actions/upload-artifact@v4
65
65
with :
66
- name : npm-package
66
+ name : npm-package-${{ matrix.runs-on }}
67
67
path : dist/nativescript-ios-${{steps.npm_version_output.outputs.NPM_VERSION}}.tgz
68
68
- name : Upload dSYMs artifact
69
- uses : actions/upload-artifact@v3
69
+ uses : actions/upload-artifact@v4
70
70
with :
71
- name : NativeScript-dSYMs
71
+ name : NativeScript-dSYMs-${{ matrix.runs-on }}
72
72
path : dist/dSYMs
73
73
test :
74
74
name : Test
@@ -122,9 +122,9 @@ jobs:
122
122
find $TEST_FOLDER/test-out -name "*junit*.xml" -maxdepth 1 -print0 | xargs -n 1 -0 npx verify-junit-xml
123
123
- name : Archive Test Result Data
124
124
if : always()
125
- uses : actions/upload-artifact@v3
125
+ uses : actions/upload-artifact@v4
126
126
with :
127
- name : test-results
127
+ name : test-results-${{ matrix.runs-on }}
128
128
path : ${{env.TEST_FOLDER}}/test_results.xcresult
129
129
publish :
130
130
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -45,14 +45,14 @@ jobs:
45
45
- name : Build
46
46
run : npm run build-ios
47
47
- name : Upload npm package artifact
48
- uses : actions/upload-artifact@v3
48
+ uses : actions/upload-artifact@v4
49
49
with :
50
- name : npm-package
50
+ name : npm-package-${{ matrix.runs-on }}
51
51
path : dist/nativescript-ios-${{env.NPM_VERSION}}.tgz
52
52
- name : Upload dSYMs artifact
53
- uses : actions/upload-artifact@v3
53
+ uses : actions/upload-artifact@v4
54
54
with :
55
- name : NativeScript-dSYMs
55
+ name : NativeScript-dSYMs-${{ matrix.runs-on }}
56
56
path : dist/dSYMs
57
57
test :
58
58
name : Test
@@ -105,7 +105,7 @@ jobs:
105
105
find $TEST_FOLDER/test-out -name "*junit*.xml" -maxdepth 1 -print0 | xargs -n 1 -0 npx verify-junit-xml
106
106
- name : Archive Test Result Data
107
107
if : always()
108
- uses : actions/upload-artifact@v3
108
+ uses : actions/upload-artifact@v4
109
109
with :
110
- name : test-results
110
+ name : test-results-${{ matrix.runs-on }}
111
111
path : ${{env.TEST_FOLDER}}/test_results.xcresult
You can’t perform that action at this time.
0 commit comments