mirror of
https://github.com/icewind1991/nextcloud-version-matrix.git
synced 2026-06-03 09:34:12 +02:00
update action description
This commit is contained in:
parent
c2bf575a35
commit
d2d332d004
2 changed files with 68 additions and 4 deletions
48
README.md
48
README.md
|
|
@ -9,13 +9,57 @@ Get a version matrix of server versions to test the app against
|
||||||
|
|
||||||
## Outputs
|
## Outputs
|
||||||
|
|
||||||
|
### `matrix`
|
||||||
|
|
||||||
|
Test matrix with server branch and php version
|
||||||
|
|
||||||
### `versions`
|
### `versions`
|
||||||
|
|
||||||
List of version number the app supports
|
List of supported nextcloud versions
|
||||||
|
|
||||||
### `branches`
|
### `branches`
|
||||||
|
|
||||||
Branches for each supported version, either `stableXX` or `master` for versions that aren't branched yet.
|
List of branches for the supported nextcloud versions
|
||||||
|
|
||||||
|
### `ocp-branches`
|
||||||
|
|
||||||
|
List of branches for the supported nextcloud/ocp versions
|
||||||
|
|
||||||
|
### `php-versions`
|
||||||
|
|
||||||
|
List of supported php versions
|
||||||
|
|
||||||
|
### `php-max`
|
||||||
|
|
||||||
|
Maximum supported php version
|
||||||
|
|
||||||
|
### `php-min`
|
||||||
|
|
||||||
|
Minimum supported php version
|
||||||
|
|
||||||
|
### `php-max-list`
|
||||||
|
|
||||||
|
Maximum supported php version, as a single-item list
|
||||||
|
|
||||||
|
### `php-min-list`
|
||||||
|
|
||||||
|
Minimum supported php version, as a single-item list
|
||||||
|
|
||||||
|
### `branches-max`
|
||||||
|
|
||||||
|
Maximum supported server version
|
||||||
|
|
||||||
|
### `branches-min`
|
||||||
|
|
||||||
|
Minimum supported server version
|
||||||
|
|
||||||
|
### `branches-max-list`
|
||||||
|
|
||||||
|
Maximum supported server version, as a single-item list
|
||||||
|
|
||||||
|
### `branches-min-list`
|
||||||
|
|
||||||
|
Minimum supported server version, as a single-item list
|
||||||
|
|
||||||
## License
|
## License
|
||||||
[MIT License](LICENSE.md)
|
[MIT License](LICENSE.md)
|
||||||
|
|
|
||||||
24
action.yml
24
action.yml
|
|
@ -5,12 +5,32 @@ inputs:
|
||||||
description: 'The path to the appinfo.xml'
|
description: 'The path to the appinfo.xml'
|
||||||
required: false
|
required: false
|
||||||
outputs:
|
outputs:
|
||||||
|
matrix:
|
||||||
|
description: 'Test matrix with server branch and php version'
|
||||||
versions:
|
versions:
|
||||||
description: 'List of supported nextcloud versions'
|
description: 'List of supported nextcloud versions'
|
||||||
branches:
|
branches:
|
||||||
description: 'List of branches for the supported nextcloud versions'
|
description: 'List of branches for the supported nextcloud versions'
|
||||||
matrix:
|
ocp-branches:
|
||||||
description: 'Test matrix with server branch and php version'
|
description: 'List of branches for the supported nextcloud/ocp versions'
|
||||||
|
php-versions:
|
||||||
|
description: 'List of supported php versions'
|
||||||
|
php-max:
|
||||||
|
description: 'Maximum supported php version'
|
||||||
|
php-min:
|
||||||
|
description: 'Minimum supported php version'
|
||||||
|
php-max-list:
|
||||||
|
description: 'Maximum supported php version, as a single-item list'
|
||||||
|
php-min-list:
|
||||||
|
description: 'Minimum supported php version, as a single-item list'
|
||||||
|
branches-max:
|
||||||
|
description: 'Maximum supported server version'
|
||||||
|
branches-min:
|
||||||
|
description: 'Minimum supported server version'
|
||||||
|
branches-max-list:
|
||||||
|
description: 'Maximum supported server version, as a single-item list'
|
||||||
|
branches-min-list:
|
||||||
|
description: 'Minimum supported server version, as a single-item list'
|
||||||
runs:
|
runs:
|
||||||
using: 'node20'
|
using: 'node20'
|
||||||
main: 'dist/index.js'
|
main: 'dist/index.js'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue