mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-28 13:32:23 +00:00
- Enhanced the package-and-publish workflow to clean up the application name by removing version and tag patterns. - Updated the installer name from "Telegram Air" to "AlphaHuman" in the DMG creation script.
15 lines
376 B
Bash
15 lines
376 B
Bash
#!/usr/bin/env bash
|
|
|
|
create-dmg \
|
|
--volname "AlphaHuman installer" \
|
|
--volicon "./tauri/icons/icon.icns" \
|
|
--background "./tauri/images/background-dmg.tiff" \
|
|
--window-size 540 380 \
|
|
--icon-size 100 \
|
|
--icon "AlphaHuman.app" 138 225 \
|
|
--hide-extension "AlphaHuman.app" \
|
|
--app-drop-link 402 225 \
|
|
--no-internet-enable \
|
|
"$1" \
|
|
"$2"
|