Release Process
This guide is auto-synced from
docs/release-process.mdin the pocket-automations repo. Edit it there — changes here are overwritten on every build.
Pocket Automations uses small tagged releases once the project reaches a coherent operator-facing state.
Versioning
Use semantic versioning:
v0.x.ywhile the project is still stabilizing public operator workflows;- increment
xfor significant role, inventory, or workflow changes; - increment
yfor fixes, documentation updates, and compatible improvements.
The first recommended release is v0.1.0 after CI is green and the HA validation matrix has been reviewed.
Compatibility Matrix
Current baseline:
- Ubuntu: 22.04, 24.04, and 26.04 target hosts;
- Ansible: ansible-core 2.21 tested locally and in CI;
- Docker: official Docker Engine packages with Compose plugin;
- Pocket docs source: https://docs.pocket.network/;
- RelayMiner: pinned GHCR image tag from
ghcr.io/pokt-network/pocket-relay-miner; - Igniter: deployed from the configured upstream Igniter repository ref;
- Caddy: official Caddy apt repository;
- Monitoring: Prometheus and Grafana Docker images pinned through inventory defaults.
Pin production deployments to explicit upstream refs where possible:
yaml
pocketd_version: vX.Y.Z
igniter_repo_version: <tag-or-commit>
ha_relayminer_repo_version: <tag-or-commit>
monitoring_prometheus_image: prom/prometheus:<tag>
monitoring_grafana_image: grafana/grafana:<tag>Pre-Release Checklist
Before tagging:
- GitHub Actions are green on
master; ansible-playbook --syntax-checkpasses forsite.yml,validate.yml, andupgrade.yml;- all example inventories parse with
ansible-inventory --list; - the setup wizard generates a parseable inventory in interactive and config-file modes;
- documentation does not claim Ansible performs staking, backup, restore, or disaster recovery;
CHANGELOG.mdhas an entry for the release.
Tagging
Inspect the final state:
bash
git status
git log --oneline -10Create and push a tag:
bash
git tag -a v0.1.0 -m "Release v0.1.0"
git push origin v0.1.0Release Notes
Release notes should include:
- supported deployment profiles;
- major features;
- known limitations;
- validation status;
- explicit out-of-scope items.
Keep the boundary clear: Ansible provisions and validates infrastructure; Igniter manages supplier lifecycle and staking operations.