Skip to content

Commit e65a4a0

Browse files
authored
ci: upload-artifact v4 (#269)
1 parent ac52442 commit e65a4a0

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/npm_release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ jobs:
6161
- name: Build
6262
run: npm run build-ios
6363
- name: Upload npm package artifact
64-
uses: actions/upload-artifact@v3
64+
uses: actions/upload-artifact@v4
6565
with:
66-
name: npm-package
66+
name: npm-package-${{ matrix.runs-on }}
6767
path: dist/nativescript-ios-${{steps.npm_version_output.outputs.NPM_VERSION}}.tgz
6868
- name: Upload dSYMs artifact
69-
uses: actions/upload-artifact@v3
69+
uses: actions/upload-artifact@v4
7070
with:
71-
name: NativeScript-dSYMs
71+
name: NativeScript-dSYMs-${{ matrix.runs-on }}
7272
path: dist/dSYMs
7373
test:
7474
name: Test
@@ -122,9 +122,9 @@ jobs:
122122
find $TEST_FOLDER/test-out -name "*junit*.xml" -maxdepth 1 -print0 | xargs -n 1 -0 npx verify-junit-xml
123123
- name: Archive Test Result Data
124124
if: always()
125-
uses: actions/upload-artifact@v3
125+
uses: actions/upload-artifact@v4
126126
with:
127-
name: test-results
127+
name: test-results-${{ matrix.runs-on }}
128128
path: ${{env.TEST_FOLDER}}/test_results.xcresult
129129
publish:
130130
runs-on: ubuntu-latest

.github/workflows/pull_request.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ jobs:
4545
- name: Build
4646
run: npm run build-ios
4747
- name: Upload npm package artifact
48-
uses: actions/upload-artifact@v3
48+
uses: actions/upload-artifact@v4
4949
with:
50-
name: npm-package
50+
name: npm-package-${{ matrix.runs-on }}
5151
path: dist/nativescript-ios-${{env.NPM_VERSION}}.tgz
5252
- name: Upload dSYMs artifact
53-
uses: actions/upload-artifact@v3
53+
uses: actions/upload-artifact@v4
5454
with:
55-
name: NativeScript-dSYMs
55+
name: NativeScript-dSYMs-${{ matrix.runs-on }}
5656
path: dist/dSYMs
5757
test:
5858
name: Test
@@ -105,7 +105,7 @@ jobs:
105105
find $TEST_FOLDER/test-out -name "*junit*.xml" -maxdepth 1 -print0 | xargs -n 1 -0 npx verify-junit-xml
106106
- name: Archive Test Result Data
107107
if: always()
108-
uses: actions/upload-artifact@v3
108+
uses: actions/upload-artifact@v4
109109
with:
110-
name: test-results
110+
name: test-results-${{ matrix.runs-on }}
111111
path: ${{env.TEST_FOLDER}}/test_results.xcresult

0 commit comments

Comments
 (0)