Skip to content

Commit

Permalink
Merge pull request #88 from Keboo/bgomes/macRelease
Browse files Browse the repository at this point in the history
release for mac
  • Loading branch information
brucegomes authored Jan 22, 2024
2 parents 9b067d5 + 9c1e5a2 commit 5f13337
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,31 @@ jobs:
#- name: Upload to blob
# run: az storage copy -s "./SciuridaeReleases/ColorKrakenSetup.exe" -d "https://sciuridae.blob.core.windows.net/test/ColorKrakenSetup.exe" --connection-string "${{ secrets.BLOB_CONNECTION_STRING }}"


build-mac:
needs: build
runs-on: macos-latest

steps:
- uses: actions/checkout@v4

- name: Build Mac App
run: xcodebuild -project "ColorKraken for Mac/ColorKraken.xcodeproj" -scheme ColorKraken -derivedDataPath ./build

- name: Archive Mac App
run: |
cd ./build/Build/Products/Release
zip -r ColorKraken-Mac.zip ColorKraken.app
- name: Upload Mac App artifact
uses: actions/upload-artifact@v4
with:
name: MacApp
path: ./build/Build/Products/Release/ColorKraken-Mac.zip

- name: Release Mac App
uses: softprops/action-gh-release@v1
with:
fail_on_unmatched_files: false
generate_release_notes: true
files: ./build/Build/Products/Release/ColorKraken-Mac.zip

0 comments on commit 5f13337

Please sign in to comment.