Skip to content

Commit c13a227

Browse files
authored
ci: set proper name for each artifact (#974)
* ci: add merge artifact * Update wda-package.yml * Update wda-package.yml
1 parent d8ce5c8 commit c13a227

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/wda-package.yml

+5
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
runs-on: ${{ needs.host_machine.outputs.host }}
3030

3131
env:
32+
PKG_NAME_IOS: "WebDriverAgentRunner-Runner"
3233
ZIP_PKG_NAME_IOS: "WebDriverAgentRunner-Runner.zip"
34+
PKG_NAME_TVOS: "WebDriverAgentRunner_tvOS-Runner"
3335
ZIP_PKG_NAME_TVOS: "WebDriverAgentRunner_tvOS-Runner.zip"
3436

3537
steps:
@@ -59,10 +61,12 @@ jobs:
5961
- name: Upload the built generic app package for iOS
6062
uses: actions/upload-artifact@master
6163
with:
64+
name: "${{ env.PKG_NAME_IOS }}"
6265
path: "${{ env.ZIP_PKG_NAME_IOS }}"
6366
- name: Upload the built generic app package for tvOS
6467
uses: actions/upload-artifact@master
6568
with:
69+
name: "${{ env.PKG_NAME_TVOS }}"
6670
path: "${{ env.ZIP_PKG_NAME_TVOS }}"
6771

6872
for_simulator_devices:
@@ -92,4 +96,5 @@ jobs:
9296
- name: Upload the built generic app package for WebDriverAgentRunner${{ matrix.target }} with ${{ matrix.arch }}
9397
uses: actions/upload-artifact@master
9498
with:
99+
name: "WebDriverAgentRunner${{ matrix.target }}-Build-Sim-${{ matrix.arch }}"
95100
path: "WebDriverAgentRunner${{ matrix.target }}-Build-Sim-${{ matrix.arch }}.zip"

0 commit comments

Comments
 (0)