update documentation

This commit is contained in:
2026-07-22 10:52:31 +02:00
parent e31930a189
commit 48f0948cfb
3 changed files with 22 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Gitea Actions
This repository contains a collection of GitHub/Gitea Actions that I developed for my own projects.
The primary goal of these actions is to eliminate repetitive setup and maintenance steps that would otherwise need to be duplicated across multiple workflows.<br/>
By centralizing these common tasks, workflows become easier to maintain, more consistent, and less error-prone.
At the moment, these actions are primarily intended for use with Gitea runners, although some of them may also work in other compatible CI environments.
## Available Actions
- **[dockerhub description](dockerhub-description/README.md)**
Updates a Docker Hub repository description while automatically installing any required dependencies missing from the runner environment.
- **[setup docker](setup-docker/README.md)**
Installs Docker on the runner and optionally configures Docker Buildx for container build workflows.
+2
View File
@@ -1,3 +1,5 @@
# dockerhub description
By default, Gitea runner environments do not include the dependencies required by [dockerhub-description](https://github.com/peter-evans/dockerhub-description).<br/> By default, Gitea runner environments do not include the dependencies required by [dockerhub-description](https://github.com/peter-evans/dockerhub-description).<br/>
This action is a wrapper around `dockerhub-description` that installs the required dependencies before invoking the upstream action, allowing it to run successfully on Gitea runners. This action is a wrapper around `dockerhub-description` that installs the required dependencies before invoking the upstream action, allowing it to run successfully on Gitea runners.
+2
View File
@@ -1,3 +1,5 @@
# setup docker
By default, many Gitea runner environments do not include a Docker installation.<br/> By default, many Gitea runner environments do not include a Docker installation.<br/>
This can be problematic because Docker is required by many container-related workflows, including building, tagging, and publishing container images. This can be problematic because Docker is required by many container-related workflows, including building, tagging, and publishing container images.