change title of section, add poetry examples
mkdocs build / build (push) Successful in 25s Details

This commit is contained in:
Louis Abel 2023-04-13 18:01:59 -07:00
parent 4622e9c1fd
commit a73156e6fe
Signed by: label
GPG Key ID: B37E62D143879B36
2 changed files with 15 additions and 2 deletions

View File

@ -1,5 +1,7 @@
---
title: Composing Releases
title: Composing and Managing Releases
---
This section goes over the process of composing a release.
This section goes over the process of composing a release from a bunch of
packages to repositories, to images. This section also goes over the basics of
working with koji when necessary.

View File

@ -87,4 +87,15 @@ options.
Note that for each of these commands, it is fully expected you are running
`poetry run` in the root of empanadas.
```
# Syncs all repositoryes for the "9" release
% poetry run sync_from_peridot --release 9 --clean-old-packages
# Syncs only the BaseOS repository without syncing sources
% poetry run sync_from_peridot --release 9 --clean-old-packages --repo BaseOS --ignore-source
# Syncs only AppStream for ppc64le
% poetry run sync_from_peridot --release 9 --clean-old-packages --repo AppStream --arch ppc64le
```
{% include "resources_bottom.md" %}