aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-07 10:54:00 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-03-07 10:54:00 -0500
commitf009facc2631eb1bedb3e615028323c25dba4b69 (patch)
tree20b3abec597d607afe6ad14d90a091fdfd462cc4
parentRemove references to CentOS/Fedora (diff)
downloadjellyfin-packaging-f009facc2631eb1bedb3e615028323c25dba4b69.tar.gz
jellyfin-packaging-f009facc2631eb1bedb3e615028323c25dba4b69.tar.bz2
jellyfin-packaging-f009facc2631eb1bedb3e615028323c25dba4b69.zip
Reorder NuGet in README
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0666d4f..f179367 100644
--- a/README.md
+++ b/README.md
@@ -56,9 +56,9 @@ Inside this repository are 7 major components:
1. Portable image builder (under `portable`), which covers all the "archive" builds (.NET portable, Linux, Windows, and MacOS) again from a single Dockerfile.
-1. Script infrastructure to handle coordinating builds (`build.py`). This script takes basic arguments and, using its internal logic, fires the correct Dockerized builds for the given build type.
+1. NuGet package builder, to prepare NuGet packages for consumption by plugins and 3rd party clients.
-1. NuGet package build infrastructure, to prepare NuGet packages for consumption by plugins and 3rd party clients.
+1. Script infrastructure to handle coordinating builds (`build.py`). This script takes basic arguments and, using its internal logic, fires the correct Dockerized builds for the given build type.
1. The GitHub Actions CI to build all the above for every supported version and architecture.
bgstack15