Status Check Workflow #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Status Check Workflow | |
on: | |
workflow_dispatch: | |
inputs: | |
psha: | |
required: true | |
jobs: | |
build: | |
name: Check Build | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ inputs.psha }} | |
- name: Set Xcode Version | |
run: sudo xcode-select -s /Applications/Xcode_15.0.app | |
- name: Cache Build Caches | |
uses: actions/cache@v3 | |
with: | |
key: check-build-cache | |
path: | | |
~/Library/Developer/Xcode/DerivedData | |
- name: Build DarockBili App | |
run: | | |
xcodebuild -scheme 'DarockBili Watch App' -configuration Release build CODE_SIGN_IDENTITY="" | |