1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-forgejo synced 2024-09-19 09:56:16 +00:00
setup-forgejo/README.md

97 lines
3.7 KiB
Markdown
Raw Normal View History

2023-03-25 23:16:39 +00:00
# setup-forgejo
* v1: only supports running Forgejo from container images
* v2: only supports running Forgejo from binaries
2023-03-25 23:16:39 +00:00
<!-- action-docs-description -->
## Description
Setup Forgejo and a runner.
If `binary` is specified, Forgejo downloads the binary from the URL and uses
it to start an instance.
Otherwise, `image` and `image-version` must be specified and Forgejo
runs from the corresponding container image using docker.
The forgejo-test-helper.sh script is available to help test and debug actions.
2023-03-29 22:27:54 +00:00
`forgejo=http://root:admin1234@${{ steps.forgejo.outputs.host-port }}`
2023-03-29 22:27:54 +00:00
* `forgejo-test-helper.sh push_self_action $forgejo root myaction vTest`
2023-09-24 14:54:52 +00:00
Creates the repository `$forgejo/root/myaction` and populates it with the
content of the repository under test, except for the `.forgejo` directory
2023-09-24 14:54:52 +00:00
(it would otherwise create an infinite loop). The tag `vTest` is
set to the SHA under test.
* `forgejo-test-helper.sh run_workflow testrepo $forgejo root testrepo myaction`
2023-09-24 14:54:52 +00:00
Creates the repository `$forgejo/root/testrepo` and populates it with the
content of the `testrepo` directory. All occurrences of `SELF` in
`testrepo/.forgejo/workflows/*.yml` are replaced with `$forgejo/root/myaction`.
* `forgejo-test-helper.sh push testrepo $forgejo root testrepo`
2023-09-24 14:54:52 +00:00
Creates the repository `$forgejo/root/testrepo` and populates it with the
content of the `testrepo` directory.
2023-03-29 22:27:54 +00:00
The combination of `push_self_action` and `run_workflow` allows to
run Forgejo Actions workflows from `testrepo` that use the action
under test (`myaction`) to verify it works as intended.
2023-09-24 14:54:52 +00:00
The [forgejo-curl.sh](https://code.forgejo.org/forgejo/forgejo-curl#forgejo-curlsh)
script is logged in the instance and ready to be used with web or api endpoints.
2023-03-25 23:16:39 +00:00
<!-- action-docs-description -->
2023-03-25 23:34:51 +00:00
2023-11-09 15:24:39 +00:00
It can only be used in a job with a `runs-on` label that designates a Forgejo runner
that [provides a LXC container](https://forgejo.org/docs/next/user/actions/#jobsjob_idruns-on).
2023-03-25 23:16:39 +00:00
<!-- action-docs-inputs -->
## Inputs
| parameter | description | required | default |
| --- | --- | --- | --- |
| image | Container image | `false` | codeberg.org/forgejo/forgejo |
| image-version | Container image version | `false` | 1.20 |
| binary | URL to a Forgejo binary | `false` | |
2023-03-25 23:16:39 +00:00
| user | Administrator user name | `false` | root |
| password | Administrator password | `false` | admin1234 |
| runner | Runner repository | `false` | https://code.forgejo.org/forgejo/runner |
| runner-version | Runner version. If it starts with @ (for instance @featurebranch), the runner will be built from source using the specified branch. | `false` | v3.3.0 |
| container | Name of the container running the Forgejo instance | `false` | forgejo |
2023-03-29 22:27:54 +00:00
| lxc-ip-prefix | Class C IP prefix used by LXC | `false` | 10.0.23 |
2023-10-28 21:47:47 +00:00
| install-only | Only install Forgejo and the Forgejo runner, do not launch them | `false` | false |
2023-03-25 23:16:39 +00:00
<!-- action-docs-inputs -->
<!-- action-docs-outputs -->
## Outputs
| parameter | description |
| --- | --- |
2023-03-27 15:36:59 +00:00
| url | URL of the Forgejo instance |
| host-port | Host and port of the Forgejo instance, e.g 172.0.17.2:3000 |
| token | Administrator application token with all scopes |
2023-03-27 15:36:59 +00:00
| runner-logs | Filename of the Forgejo runner logs |
2023-07-03 21:28:39 +00:00
| runner-file | Path to the runner file |
2023-03-25 23:16:39 +00:00
<!-- action-docs-outputs -->
## Example
```
name: Setup Forgejo
on: [push]
jobs:
setup-forgejo:
2023-11-09 15:24:39 +00:00
runs-on: lxc
2023-03-25 23:16:39 +00:00
steps:
2023-11-09 15:24:39 +00:00
- uses: actions/checkout@v4
2023-03-25 23:16:39 +00:00
- id: forgejo
2023-03-30 14:11:04 +00:00
uses: actions/setup-forgejo@v1
2023-03-25 23:16:39 +00:00
with:
image-version: 1.20
2023-03-25 23:16:39 +00:00
- run: |
curl ${{ steps.forgejo.outputs.url }}/api/forgejo/v1/version | grep 1.20
2023-03-25 23:16:39 +00:00
```
2023-03-27 14:43:26 +00:00
## Documentation
2023-09-26 19:53:30 +00:00
Update the README from the action file with https://github.com/npalm/action-docs `action-docs --update-readme`