Google Antigravity Fedora DNF Repository - Automated builds of antigravity and antigravity-ide RPMs
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Crupuk 52b32937c3
All checks were successful
Build and Publish Antigravity Repository / build (push) Successful in 8m7s
fix(debian): generate uncompressed Packages file for APT InRelease metadata
2026-07-23 12:48:50 +02:00
.forgejo/workflows fix(debian): generate uncompressed Packages file for APT InRelease metadata 2026-07-23 12:48:50 +02:00
README.md feat(ci): Automated build, signing, and publishing of Google Antigravity RPM and DEB packages 2026-07-22 14:27:07 +02:00
RPM-GPG-KEY-soez fix(keys): fix typo on line 55 of RPM-GPG-KEY-soez causing GPG CRC error 2026-07-23 12:34:17 +02:00
RPM-GPG-KEY-soez.priv feat(ci): Automated build, signing, and publishing of Google Antigravity RPM and DEB packages 2026-07-22 14:27:07 +02:00

Google Antigravity Repository (DNF & APT)

This repository automates the compilation and publishing of Google Antigravity Agent and Antigravity IDE packages (RPM for Fedora/CentOS/RHEL and DEB for Debian/Ubuntu) using packaged-gravity.

How it works

  1. Trigger: Daily scheduled cron job (0 0 * * *), manual release trigger (workflow_dispatch), or tag push (v*).
  2. Build: Forgejo runner fetches the target release, builds .rpm and .deb packages for both Agent and IDE.
  3. Publish: Packages are stored in /opt/antigravity-repo/rpms/fedora (indexed with createrepo_c) and /opt/antigravity-repo/rpms/debian (indexed with dpkg-scanpackages).

Client Configuration

1. Fedora / CentOS / RHEL (DNF)

Create /etc/yum.repos.d/antigravity.repo:

[antigravity]
name=Google Antigravity Repository
baseurl=https://packages.soez.be/fedora/
enabled=1
gpgcheck=1
repo_gpgcheck=0
gpgkey=https://packages.soez.be/RPM-GPG-KEY-soez
metadata_expire=300

Install packages:

sudo dnf install antigravity antigravity-ide

2. Debian / Ubuntu (APT)

Import GPG key & create /etc/apt/sources.list.d/antigravity.list:

curl -fsSL https://packages.soez.be/RPM-GPG-KEY-soez | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/soez-packages.gpg
echo "deb https://packages.soez.be/debian /" | sudo tee /etc/apt/sources.list.d/antigravity.list

Update & install packages:

sudo apt update
sudo apt install antigravity antigravity-ide