diff options
author | Norwin <noerw@users.noreply.github.com> | 2022-04-01 17:31:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 23:31:40 +0800 |
commit | 4c5cb1e2f2c7a1fcc3b151192bd45bd1bbc090bd (patch) | |
tree | 81d09ffe20bb4c1999698d783c37055b65ad859c /docs | |
parent | 58c9d12933236c57be958a7e09b8049712624c60 (diff) | |
download | gitea-4c5cb1e2f2c7a1fcc3b151192bd45bd1bbc090bd.tar.gz gitea-4c5cb1e2f2c7a1fcc3b151192bd45bd1bbc090bd.zip |
Improve package registry docs (#19273)
* Improve package registry docs
* move new content down
* add hint re upload a package
* wording, formatting
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/packages/overview.en-us.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/content/doc/packages/overview.en-us.md b/docs/content/doc/packages/overview.en-us.md index f7809fc8a3..1e4209930f 100644 --- a/docs/content/doc/packages/overview.en-us.md +++ b/docs/content/doc/packages/overview.en-us.md @@ -38,6 +38,29 @@ The following package managers are currently supported: **The following paragraphs only apply if Packages are not globally disabled!** +## Repository-Packages + +A package always belongs to an owner (a user or organisation), not a repository. +To link an (already uploaded) package to a repository, open the settings page +on that package and choose a repository to link this package to. +The entire package will be linked, not just a single version. + +Linking a package results in showing that package in the repository's package list, +and shows a link to the repository on the package site (as well as a link to the repository issues). + +## Access Restrictions + +| Package owner type | User | Organization | +|--------------------|------|--------------| +| **read** access | public, if user is public too; otherwise for this user only | public, if org is public, otherwise org members only | +| **write** access | owner only | org members with admin or write access to the org | + +N.B.: These access restrictions are [subject to change](https://github.com/go-gitea/gitea/issues/19270), where more finegrained control will be added via a dedicated organization team permission. + +## Create or upload a package + +Depending on the type of package, use the respective package-manager for that. Check out the sub-page of a specific package manager for instructions. + ## View packages You can view the packages of a repository on the repository page. |