Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

The big rewrite start #280

The big rewrite start

The big rewrite start #280

Workflow file for this run

name: Build macOS
jobs:
build-and-deploy:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Build
run: |
cmake -B build -GNinja
cmake --build build--config Release
- name: Build DMG
run: |
cd build
brew install graphicsmagick imagemagick
pip install setuptools
npm install --global create-dmg
create-dmg --dmg-title=hydra 'hydra.app' || true
mv hydra*.dmg "hydra.dmg"
- name: GH Release 🚀
uses: actions/upload-artifact@v2
with:
name: MacOSRelease
path: build/hydra.dmg