updating structure

This commit is contained in:
Your Name
2024-08-25 18:34:01 +03:00
parent dbfb2c03bb
commit af9260a35c
23 changed files with 7546 additions and 65 deletions

View File

@@ -19,4 +19,23 @@ This action will update the package version in the Gitea system using the API an
gitea_access_token: "${{ secrets._GITEA_ACCESS_TOKEN }}"
gitea_owner: "owner"
gitea_repository: "repository"
gitea_package_registry: "composer"
gitea_package_registry: "composer"
```
## Developing
build
```shell
docker build . --build-arg=PHP_VERSION=8.3.10-1 -t=gitea-package-action
```
initialization
```shell
docker run --rm -e GITHUB_WORKSPACE=/usr/bin/app -v .:/usr/bin/app gitea-package-action composer install
```
running
```shell
docker run --rm -e GITHUB_WORKSPACE=/usr/bin/app -v .:/usr/bin/app gitea-package-action php app.php
```