-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
98 changed files
with
23,844 additions
and
3,265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,3 +55,19 @@ jobs: | |
- uses: codecov/codecov-action@v5 | ||
with: | ||
files: "'*/jacoco.xml'" | ||
|
||
- name: Extract Maven project version for Asciidoc GitHub Pages directory naming | ||
run: echo ::set-output name=version::$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec) | ||
id: project | ||
|
||
- name: Show extracted Maven project version | ||
run: echo ${{ steps.project.outputs.version }} | ||
|
||
- name: Deploy Asciidoc docs output to GitHub Pages | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages # The branch the action should deploy to. | ||
folder: spring-boot-admin-docs/target/generated-docs # The folder the action should deploy. | ||
target-folder: ${{ steps.project.outputs.version }} | ||
clean: true # Automatically remove deleted files from the deploy branch | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 17 additions & 10 deletions
27
...ot-admin-client/src/main/resources/META-INF/additional-spring-configuration-metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
{"groups": [ | ||
|
||
],"properties": [ | ||
{ | ||
"name": "spring.boot.admin.client.enabled", | ||
"type": "java.lang.Boolean", | ||
"description": "Enable Spring Admin Client.", | ||
"defaultValue": "true" | ||
} | ||
]} | ||
{ | ||
"groups": [ | ||
{ | ||
"name": "spring.boot.admin.client", | ||
"type": "de.codecentric.boot.admin.client.config.ClientProperties", | ||
"sourceType": "de.codecentric.boot.admin.client.config.ClientProperties" | ||
} | ||
], | ||
"properties": [ | ||
{ | ||
"name": "spring.boot.admin.client.enabled", | ||
"type": "java.lang.Boolean", | ||
"description": "Enable Spring Admin Client.", | ||
"defaultValue": "true" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.