feat: cicd workflow to build the project #6
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: Xcode Build | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- "DropMeJPEG/**" | |
- "DropMeJPEG.xcodeproj/**" | |
- ".github/workflows/build.yml" # This file | |
pull_request: | |
paths: | |
- "DropMeJPEG/**" | |
- "DropMeJPEG.xcodeproj/**" | |
- ".github/workflows/build.yml" # This file | |
jobs: | |
build: | |
name: Build and analyze default scheme using xcodebuild command | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set Default Scheme | |
run: | | |
scheme_list=$(xcodebuild -list -json | tr -d "\n") | |
default=$(echo $scheme_list | ruby -e "require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]") | |
echo $default | cat >default | |
echo Using default scheme: $default | |
- name: Build | |
env: | |
scheme: ${{ 'default' }} | |
run: | | |
if [ $scheme = default ]; then scheme=$(cat default); fi | |
if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi | |
file_to_build=`echo $file_to_build | awk '{$1=$1;print}'` | |
xcodebuild clean build analyze -scheme "$scheme" -"$filetype_parameter" "$file_to_build" | xcpretty && exit ${PIPESTATUS[0]} | |
- name: Create DMG | |
run: | | |
hdiutil create -volname DropMeJPEG -srcfolder build/Release/DropMeJPEG.app -ov -format UDZO build/DropMeJPEG.dmg | |
- name: Upload DMG | |
uses: actions/upload-artifact@v4 | |
with: | |
name: DropMeJPEG.dmg | |
path: build/DropMeJPEG.dmg |