Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/actions/uitests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,19 @@ runs:
path: /tmp/uitest-artifacts/
retention-days: 7

- name: Zip xcresult bundle
if: steps.uitest.outcome == 'failure'
shell: bash
run: |
cd /tmp
mv ${{ inputs.platform }}-uitest.xcresult ${{ inputs.artifact-name }}.xcresult
zip -r -q ${{ inputs.artifact-name }}.xcresult.zip ${{ inputs.artifact-name }}.xcresult

- name: Upload xcresult bundle
if: steps.uitest.outcome == 'failure'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ inputs.artifact-name }}-xcresult
path: /tmp/${{ inputs.platform }}-uitest.xcresult
name: ${{ inputs.artifact-name }}.xcresult.zip
path: /tmp/${{ inputs.artifact-name }}.xcresult.zip
archive: false
retention-days: 7
Loading