Skip to content

Commit

Permalink
Merge pull request #32 from andrewn/chore/xcode-action
Browse files Browse the repository at this point in the history
Build app using github actions
  • Loading branch information
andrewn authored Jun 30, 2024
2 parents 4cb628d + dd12689 commit ea70a45
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 0 deletions.
87 changes: 87 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
name: Build macOS App

on:
push:
branches: [main]
tags:
- "v*" # This will trigger the workflow on push of tags starting with 'v'
pull_request:
branches: [main]

env:
PROJECT_NAME: BrewServicesMenubar
SCHEME_NAME: BrewServicesMenubar
XCODE_VERSION: 15.4

jobs:
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v4

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${XCODE_VERSION}.app

- name: Cache Swift packages
uses: actions/cache@v4
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Build
run: |
xcodebuild clean build -project ${PROJECT_NAME}.xcodeproj -scheme ${SCHEME_NAME} -destination 'platform=macOS'
- name: Archive app
run: |
xcodebuild -project ${PROJECT_NAME}.xcodeproj -scheme ${SCHEME_NAME} -configuration Release archive -archivePath $PWD/build/${PROJECT_NAME}.xcarchive
- name: Export app
run: |
xcodebuild -exportArchive -archivePath $PWD/build/${PROJECT_NAME}.xcarchive -exportOptionsPlist ExportOptions.plist -exportPath $PWD/build
- name: Get version
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
if: startsWith(github.ref, 'refs/tags/')

- name: Zip .app for upload
run: |
cd $PWD/build
if [[ $GITHUB_REF == refs/tags/* ]]; then
zip -r ${{ env.PROJECT_NAME }}-${{ steps.get_version.outputs.VERSION }}.zip ${{ env.PROJECT_NAME }}.app
else
zip -r ${{ env.PROJECT_NAME }}.zip ${{ env.PROJECT_NAME }}.app
fi
echo "ZIP_FILE=${{ env.PROJECT_NAME }}${{ startsWith(github.ref, 'refs/tags/') && format('-{0}', steps.get_version.outputs.VERSION) || '' }}.zip" >> $GITHUB_ENV
ls -la # Debug: List contents of current directory
- name: Debug - List build directory
run: |
echo "Contents of $PWD/build:"
ls -R $PWD/build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.PROJECT_NAME }}
path: ${{ github.workspace }}/build/${{ env.ZIP_FILE }}
if: success()

- name: Upload build directory (for debugging)
uses: actions/upload-artifact@v4
with:
name: build-directory-contents
path: $PWD/build
if: failure()

- name: Create Release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: ${{ github.workspace }}/build/${{ env.ZIP_FILE }}
draft: false
prerelease: false
18 changes: 18 additions & 0 deletions ExportOptions.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>method</key>
<string>mac-application</string>
<key>teamID</key>
<string>PS3M4R7DP9</string>
<key>signingStyle</key>
<string>automatic</string>
<key>stripSwiftSymbols</key>
<true />
<key>uploadSymbols</key>
<true />
<key>uploadBitcode</key>
<false />
</dict>
</plist>

0 comments on commit ea70a45

Please sign in to comment.