mirror of
https://code.forgejo.org/actions/setup-forgejo.git
synced 2024-11-23 18:40:58 -05:00
add host-port to the output
This commit is contained in:
parent
aefd5f2538
commit
e6bb54498c
2 changed files with 11 additions and 2 deletions
|
@ -28,6 +28,7 @@ It can only be run on the `self-hosted` platform, running on a host with LXC ins
|
|||
| parameter | description |
|
||||
| --- | --- |
|
||||
| url | URL |
|
||||
| host-port | Host and port, e.g 172.0.17.2:3000 |
|
||||
| token | Application token |
|
||||
<!-- action-docs-outputs -->
|
||||
|
||||
|
@ -49,3 +50,7 @@ jobs:
|
|||
curl ${{ steps.forgejo.outputs.url }}/api/forgejo/v1/version | grep 1.19
|
||||
|
||||
```
|
||||
|
||||
## Hacking
|
||||
|
||||
* Update the README from the action file with https://github.com/npalm/action-docs `action-docs --update-readme`
|
||||
|
|
|
@ -23,10 +23,13 @@ inputs:
|
|||
outputs:
|
||||
url:
|
||||
description: "URL"
|
||||
value: ${{ steps.forgejo.outputs.url }}"
|
||||
value: "${{ steps.forgejo.outputs.url }}"
|
||||
host-port:
|
||||
description: "Host and port, e.g 172.0.17.2:3000"
|
||||
value: "${{ steps.forgejo.outputs.host-port }}"
|
||||
token:
|
||||
description: "Application token"
|
||||
value: ${{ steps.forgejo.outputs.token }}"
|
||||
value: "${{ steps.forgejo.outputs.token }}"
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
|
@ -39,5 +42,6 @@ runs:
|
|||
forgejo.sh setup ${{ inputs.user }} "${{ inputs.password }}" ${{ inputs.image }}:${{ inputs.image-version }}
|
||||
forgejo-runner.sh setup
|
||||
echo url="http://$(cat forgejo-ip):3000" >> $GITHUB_OUTPUT
|
||||
echo host-port="$(cat forgejo-ip):3000" >> $GITHUB_OUTPUT
|
||||
echo token=$(cat forgejo-token) >> $GITHUB_OUTPUT
|
||||
shell: bash
|
||||
|
|
Loading…
Reference in a new issue