forked from p0deje/Maccy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separated action workflows into build and build+release
- Loading branch information
1 parent
5d46e47
commit 8bec889
Showing
2 changed files
with
74 additions
and
57 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
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]} |