Updated version number to 0.9.5 #5
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: Build Cleepp | |
on: | |
push: | |
branches: [forkmain] | |
paths-ignore: | |
- ".github/**" | |
- ".git/**" | |
- ".gitignore" | |
- "Designs/**" | |
- "*Tests/**" | |
- "*.md" | |
- "*.toml" | |
- "*.xml" | |
workflow_dispatch: | |
branches: [forkmain] | |
jobs: | |
build: | |
name: Build Cleepp Non-AppStore Variant | |
runs-on: macos-14 # required to use Xcode 15, "macos-latest" is actually older and uses Xcode 14 | |
if: ${{ ! contains(github.ref, 'refs/tags') }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
xcodebuild clean build analyze -scheme Cleepp -configuration Release -project Maccy.xcodeproj -derivedDataPath . | xcpretty && exit ${PIPESTATUS[0]} |