Files
wehub-resource-sync 19dc5d82a0
Rust / build (push) Failing after 1s
Rust / docker (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 12:29:44 +08:00

68 lines
1.6 KiB
Markdown

# Ubuntu PPA Packaging for RustNet
RustNet uses GitHub Actions to automatically build and upload packages to Ubuntu PPA.
## Quick Start
Push a git tag to trigger automatic PPA release:
```bash
git tag v1.0.0
git push origin v1.0.0
```
This automatically builds and uploads source packages for both supported Ubuntu series:
- Ubuntu 25.10 (Questing Quokka)
- Ubuntu 26.04 LTS (Resolute Raccoon)
Both series ship `rustc-1.88` / `cargo-1.88`, which is the minimum required for the let-chains feature used by the project (see `rust-version` in `Cargo.toml`).
## GitHub Secrets Setup
Add these secrets to your GitHub repository (Settings → Secrets and variables → Actions):
### 1. GPG_PRIVATE_KEY
Your passphrase-free CI GPG private key:
```bash
cat ci-signing-key.asc
# Copy the entire output including BEGIN/END markers
```
### 2. GPG_KEY_ID
Your CI GPG key ID:
```bash
gpg --list-keys cadetg@gmail.com
# Copy the key ID (long hex string)
```
## Installation (for users)
```bash
sudo add-apt-repository ppa:domcyrus/rustnet
sudo apt update
sudo apt install rustnet
```
## Package Details
- **Source**: rustnet-monitor
- **Binary**: rustnet
- **Maintainer**: Marco Cadetg <cadetg@gmail.com>
- **PPA**: https://launchpad.net/~domcyrus/+archive/ubuntu/rustnet
- **Supported**: Ubuntu 25.10 (Questing) and 26.04 LTS (Resolute)
- **Architectures**: amd64, arm64, armhf
## Workflow
See [.github/workflows/ppa-release.yml](../.github/workflows/ppa-release.yml)
## Links
- [PPA Packages](https://launchpad.net/~domcyrus/+archive/ubuntu/rustnet/+packages)
- [Build Logs](https://launchpad.net/~domcyrus/+archive/ubuntu/rustnet/+builds)