Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
yordanovsstoyan committed Jun 11, 2024
1 parent b0b09b1 commit d5aa1b1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
4 changes: 2 additions & 2 deletions actions/java-gradle-build-push-jib-multi-plaftorm/action.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Build tarball image"
description: "Build tarball image using Gradle"
name: "Build Multi-Platrofm image"
description: "Build Multi-Platrofm image using Gradle"

inputs:
image-tag:
Expand Down
22 changes: 13 additions & 9 deletions docs/actions/java-gradle-build-push-jib-multi-plaftorm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ steps:
- name: Build multi-plaform image
uses: bakdata/ci-templates/actions/java-gradle-build-push-jib-multi-platform@main
with:
full-image-name: "registry/image-name" # (Required)
registry-password: "registry-password" # (Required)
full-image-name: "registry/image-name" # (Optional)
registry-password: "registry-password" # (Optional)
image-tag: "tag" # (Optional)
image-artifact-name: "image-artifact" # (Optional)
java-distribution: "microsoft" # (Optional)
Expand All @@ -27,21 +27,25 @@ steps:
| INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION |
| --------------------------- | ------ | -------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| download-lfs-files | string | false | `"false"` | Whether the Git checkout action should resolve LFS files or not. (Default is false) |
| gradle-cache | string | false | `"true"` | Whether Gradle caching is enabled or not. (Default is true) |
| gradle-cache-read-only | string | false | `"${{ github.event.repository != null && github.ref_name != github.event.repository.default_branch }}"` | Whether Gradle caching should be read-only. By default this value is 'false' for workflows on the GitHub default branch and 'true' for workflows on other branches. |
| gradle-refresh-dependencies | string | false | `"false"` | Whether Gradle should refresh dependencies. (Default is false) |
| gradle-version | string | false | `"wrapper"` | Gradle version to be installed. (Default is wrapper) |
| image-tag | string | false | `""` | Tag of Jib Image. |
| registry-password | string | false | `""` | Password of registry. |
| full-image-name | string | false | `""` | Full name of image. |
| image-artifact-name | string | false | `"image-artifact"` | Artifact name to upload tarball image, see https://github.com/actions/upload-artifact |
| image-name | string | false | `"${{ github.event.repository.name }}"` | Name of Docker image. |
| java-distribution | string | false | `"microsoft"` | Java distribution to be installed. (Default is microsoft) |
| java-version | string | false | `"11"` | Java version to be installed. (Default is 11) |
| jib-from-image | string | false | | The Jib base image to use |
| subproject | string | false | | The Gradle subproject for which the tarball image should be built (If not specified, a tarball image for the root project will be built) |
| gradle-version | string | false | `"wrapper"` | Gradle version to be installed. (Default is wrapper) |
| gradle-cache | string | false | `"true"` | Whether Gradle caching is enabled or not. (Default is true) |
| gradle-cache-read-only | string | false | `"${{ github.event.repository != null && github.ref_name != github.event.repository.default_branch }}"` | Whether Gradle caching should be read-only. By default this value is 'false' for workflows on the GitHub default branch and 'true' for workflows on other branches. |
| gradle-refresh-dependencies | string | false | `"false"` | Whether Gradle should refresh dependencies. (Default is false) |
| working-directory | string | false | `"."` | Working directory of your Gradle artifacts. (Default is .) |
| download-lfs-files | string | false | `"false"` | Whether the Git checkout action should resolve LFS files or not. (Default is false) |
| subproject | string | false | | The Gradle subproject for which the tarball image should be built (If not specified, a tarball image for the root project will be built) |
| jib-from-image | string | false | | The Jib base image to use |
<!-- AUTO-DOC-INPUT:END -->
### Outputs
<!-- AUTO-DOC-OUTPUT:START - Do not remove or modify this section -->
Expand Down

0 comments on commit d5aa1b1

Please sign in to comment.