@@ -11,11 +11,11 @@ nav_order: 2
1111awesome-ci createRelease [subcommand-option]
1212```
1313
14- | Subcommand option | Description |
15- | ------------------- | ----------------------------------------------------------------------------- |
16- | ` -version ` | overrides any version from git and patches the given string. |
17- | ` -patchLevel ` | overrides the patchLevel. make shure our following the alias definition. |
18- | ` -format ` | pastes the required output to the console. This can be extracted to variables |
14+ | Subcommand option | Description |
15+ | ----------------- | ----------------------------------------------------------------------------- |
16+ | ` -version ` | overrides any version from git and patches the given string. |
17+ | ` -patchLevel ` | overrides the patchLevel. make shure our following the alias definition. |
18+ | ` -format ` | pastes the required output to the console. This can be extracted to variables |
1919
2020### -version
2121
@@ -46,6 +46,7 @@ Current release version: 1.0.0
4646Patch level: feature
4747Possible new release version: 1.1.0
4848```
49+
4950``` bash
5051awesome-ci getBuildInfos -patchLevel feature -version 1.0.0 -format " pr,next_version"
5152# Output:
@@ -54,19 +55,21 @@ awesome-ci getBuildInfos -patchLevel feature -version 1.0.0 -format "pr,next_ver
5455
5556### Special to github actions
5657
57- With a github action, all available information is always set as environment variables.
58+ With a github action, all available information is always set as environment variables. Once set the Variables ale awailable in all steps and runners.
5859
5960``` bash
6061# ### Setting Env variables:
61- PR=17
62- ORGA=eksrvb
63- REPO=playground
64- VERSION=0.4.4
65- NEXT_VERSION=0.4.5
62+ ACI_PR=17
63+ ACI_ORGA=eksrvb
64+ ACI_REPO=playground
65+ ACI_BRANCH=bugfix/test-pr
66+ ACI_PATCH_LEVEL=bugfix
67+ ACI_VERSION=0.4.4
68+ ACI_NEXT_VERSION=0.4.5
6669
6770# ### Info output:
6871Pull Request: 17
6972Current release version: 0.4.4
7073Patch level: bugfix
7174Possible new release version: 0.4.5
72- ```
75+ ```
0 commit comments