From 146b8235bb2851bc991bfb8386ccbcac56d1b7bd Mon Sep 17 00:00:00 2001 From: Kevin Schneider Date: Fri, 15 Nov 2024 20:48:47 +0100 Subject: [PATCH] update readme --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 86821c4..4447a15 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ Read more at [avpr.nfdi4plants.org/about](https://avpr.nfdi4plants.org/about) - [Triggering a image release](#triggering-a-image-release) - [OpenAPI endpoint documentation via Swagger UI](#openapi-endpoint-documentation-via-swagger-ui) - [Testing](#testing) + - [Release packages to production](#release-packages-to-production) # General @@ -349,3 +350,19 @@ There are 2 solutions that contain test projects: Run the tests with `dotnet test` in the respective test project folders or on the respective solution. [🔼 Back to top](#table-of-contents) + +## Release packages to production + +Automated package releases are currently only performed to the preview index. + +If you are an authorized user with an API key, packages can be pushed to prod with the `AVPRCI` CLI tool in this repo: + +in the repo root, run: + +```shell +dotnet run --project .\src\AVPRCI\AVPRCI.fsproj -- publish --api-key yourKeyHere --dry-run +``` + +to see what would be published, and remove the `--dry-run` flag to actually publish the packages. + +[🔼 Back to top](#table-of-contents)