Debian/Ubuntu package repository for Milaidy — personal AI assistant built on ElizaOS.
# Add the repository key and source
curl -fsSL https://milady-ai.github.io/apt/gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/milaidy.gpg
echo "deb [signed-by=/usr/share/keyrings/milaidy.gpg] https://milady-ai.github.io/apt stable main" | \
sudo tee /etc/apt/sources.list.d/milaidy.list
# Install
sudo apt update
sudo apt install milaidyecho "deb [trusted=yes] https://milady-ai.github.io/apt stable main" | \
sudo tee /etc/apt/sources.list.d/milaidy.list
sudo apt update
sudo apt install milaidyThis repository is hosted via GitHub Pages. When a new version of Milaidy is released:
- The
publish-packages.ymlworkflow in the main repo triggers this repo'supdate-repo.yml - The workflow builds a
.debpackage from the npm release - Repository metadata (Packages, Release) is regenerated
- Changes are pushed to the
gh-pagesbranch
├── dists/stable/main/ # Package metadata
│ ├── binary-amd64/
│ ├── binary-arm64/
│ └── binary-all/
├── pool/main/m/milaidy/ # .deb packages
├── gpg.key # Repository signing key
└── index.html # Landing page
The repository is GPG-signed when APT_GPG_PRIVATE_KEY and APT_GPG_PASSPHRASE secrets are configured.
See the publishing guide for setup instructions.