aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-02-16 02:16:17 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-02-16 02:16:17 -0500
commitc06920e8f71a49c1ac3ed18dd87c26787eb90731 (patch)
tree1fbf5b080fa9ab247d45283eaff24e38e9a891a0
parentAdd JELLYFIN_VERSION to all build-time envs (diff)
downloadjellyfin-packaging-c06920e8f71a49c1ac3ed18dd87c26787eb90731.tar.gz
jellyfin-packaging-c06920e8f71a49c1ac3ed18dd87c26787eb90731.tar.bz2
jellyfin-packaging-c06920e8f71a49c1ac3ed18dd87c26787eb90731.zip
Add missing entry in list
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 17f7165..14545f2 100644
--- a/README.md
+++ b/README.md
@@ -56,9 +56,11 @@ Inside this repository are 7 major components:
4. Docker image builder (under `docker`). Like the above two as well, only building the combined Docker images with a single Dockerfile.
-5. 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.
+5. Portable image build (under `portable`), which covers all the "archive" builds (.NET portable, Linux, Windows, and MacOS) again from a single Dockerfile.
-6. The GitHub Actions CI to build all the above for every supported version and architecture.
+6. 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.
+
+7. The GitHub Actions CI to build all the above for every supported version and architecture.
## Design Decisions
bgstack15