You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* giteaofficial/main:
[skip ci] Updated translations via Crowdin
switch destination directory for apt signing keys (go-gitea#28639)
Extend description for ARTIFACT_RETENTION_DAYS (go-gitea#28626)
Refactor timeutil package (go-gitea#28623)
Refactor some legacy code and remove unused code (go-gitea#28622)
Remove unnecessary syncbranchToDB with tests (go-gitea#28624)
Do not set `Accept` header twice (go-gitea#28598)
[skip ci] Updated translations via Crowdin
fix wrong link in user and organization profile when using relative url (go-gitea#28617)
Add get actions runner registration token for API routes, repo, org, user and global level (go-gitea#27144)
Fix session key conflict with database keyword (go-gitea#28613)
Copy file name to clipboardExpand all lines: docs/content/administration/config-cheat-sheet.en-us.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1390,7 +1390,7 @@ PROXY_HOSTS = *.github.com
1390
1390
-`DEFAULT_ACTIONS_URL`: **github**: Default platform to get action plugins, `github` for `https://github.com`, `self` for the current Gitea instance.
1391
1391
-`STORAGE_TYPE`: **local**: Storage type for actions logs, `local` for local disk or `minio` for s3 compatible object storage service, default is `local` or other name defined with `[storage.xxx]`
1392
1392
-`MINIO_BASE_PATH`: **actions_log/**: Minio base path on the bucket only available when STORAGE_TYPE is `minio`
1393
-
-`ARTIFACT_RETENTION_DAYS`: **90**: Number of days to keep artifacts. Set to 0 to disable artifact retention. Default is 90 days if not set.
1393
+
-`ARTIFACT_RETENTION_DAYS`: **90**: Default number of days to keep artifacts. This can be overridden in `actions/upload_artifact`. Set to 0 to disable artifact retention. Default is 90 days if not set. Each artifact can have it's own number of retention days.
1394
1394
-`ZOMBIE_TASK_TIMEOUT`: **10m**: Timeout to stop the task which have running status, but haven't been updated for a long time
1395
1395
-`ENDLESS_TASK_TIMEOUT`: **3h**: Timeout to stop the tasks which have running status and continuous updates, but don't end for a long time
1396
1396
-`ABANDONED_JOB_TIMEOUT`: **24h**: Timeout to cancel the jobs which have waiting status, but haven't been picked by a runner for a long time
Copy file name to clipboardExpand all lines: docs/content/usage/packages/debian.en-us.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ The following examples use `apt`.
27
27
To register the Debian registry add the url to the list of known apt sources:
28
28
29
29
```shell
30
-
echo"deb https://gitea.example.com/api/packages/{owner}/debian {distribution} {component}"| sudo tee -a /etc/apt/sources.list.d/gitea.list
30
+
echo"deb [signed-by=/etc/apt/keyrings/gitea-{owner}.asc] https://gitea.example.com/api/packages/{owner}/debian {distribution} {component}"| sudo tee -a /etc/apt/sources.list.d/gitea.list
If the registry is private, provide credentials in the url. You can use a password or a [personal access token](development/api-usage.md#authentication):
40
40
41
41
```shell
42
-
echo"deb https://{username}:{your_password_or_token}@gitea.example.com/api/packages/{owner}/debian {distribution} {component}"| sudo tee -a /etc/apt/sources.list.d/gitea.list
42
+
echo"deb [signed-by=/etc/apt/keyrings/gitea-{owner}.asc] https://{username}:{your_password_or_token}@gitea.example.com/api/packages/{owner}/debian {distribution} {component}"| sudo tee -a /etc/apt/sources.list.d/gitea.list
43
43
```
44
44
45
45
The Debian registry files are signed with a PGP key which must be known to apt:
Copy file name to clipboardExpand all lines: docs/content/usage/packages/debian.zh-cn.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ menu:
27
27
要注册 Debian 注册表,请将 URL 添加到已知 `apt` 源列表中:
28
28
29
29
```shell
30
-
echo"deb https://gitea.example.com/api/packages/{owner}/debian {distribution} {component}"| sudo tee -a /etc/apt/sources.list.d/gitea.list
30
+
echo"deb [signed-by=/etc/apt/keyrings/gitea-{owner}.asc] https://gitea.example.com/api/packages/{owner}/debian {distribution} {component}"| sudo tee -a /etc/apt/sources.list.d/gitea.list
echo"deb https://{username}:{your_password_or_token}@gitea.example.com/api/packages/{owner}/debian {distribution} {component}"| sudo tee -a /etc/apt/sources.list.d/gitea.list
42
+
echo"deb [signed-by=/etc/apt/keyrings/gitea-{owner}.asc] https://{username}:{your_password_or_token}@gitea.example.com/api/packages/{owner}/debian {distribution} {component}"| sudo tee -a /etc/apt/sources.list.d/gitea.list
0 commit comments