Skip to content

Update actions/upload-artifact action to v4 - autoclosed #73

Update actions/upload-artifact action to v4 - autoclosed

Update actions/upload-artifact action to v4 - autoclosed #73

Workflow file for this run

name: macOS
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
macos-test-build-release-xcode:
runs-on: macos-latest
strategy:
matrix:
xcode: [13.4.1, 14.1]
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s '/Applications/Xcode_${{ matrix.xcode }}.app'
- name: Test
run: make test
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
- name: Upload test artifacts
if: failure()
uses: actions/upload-artifact@v4.4.0
with:
name: test-artifacts-${{ matrix.xcode }}-${{ github.run_id }}
path: |
.build/**/*.json
.build/**/*.xctest
- name: Build Release
run: make buildRelease
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
- name: Upload build artifacts
if: failure()
uses: actions/upload-artifact@v4.4.0
with:
name: build-artifacts-${{ matrix.xcode }}-${{ github.run_id }}
path: |
*.lcov
.build/*.yaml
.build/**/*.a
.build/**/*.so
.build/**/*.dylib
.build/**/*.dSYM
.build/**/*.json