Skip to content

Release 4.6.0 🚀 #354

Release 4.6.0 🚀

Release 4.6.0 🚀 #354

Workflow file for this run

name: Build watchOS
on:
push:
branches:
- '*'
pull_request:
branches:
- main
jobs:
build:
name: Build watchOS
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build watchOS framework
run: |
set -o pipefail && xcodebuild -project ID3TagEditor.xcodeproj -scheme "ID3TagEditor watchOS" clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -destination "platform=watchOS Simulator,name=Apple Watch Series 8 (45mm),OS=9.1" | xcpretty
- name: Build watchOS Demo
run: |
set -o pipefail && xcodebuild -project Demo/Demo.xcodeproj -scheme "Demo watchOS" clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | xcpretty