Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yordanovsstoyan committed Aug 7, 2024
1 parent df7a793 commit c32012e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion actions/java-gradle-build-jib/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ inputs:
image-tag:
description: "Tag of Jib Image"
required: false
default: "pipeline-${{ github.run_id }}-git-{{ sha }}"
default: "pipeline-${{ github.run_id }}-git-${GITHUB_SHA::8}}"
full-image-name:
description: "Full name of image (registry/image:tag) If an image name is provided without a tag, 'latest' will be used. Be careful with registries that dont allow overwriting tags."
required: true
Expand Down
2 changes: 1 addition & 1 deletion docs/actions/java-gradle-build-jib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
| 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-name | string | false | `"${{ github.event.repository.name }}"` | Name of Docker image. |
| image-tag | string | false | `"pipeline-${{ github.run_id }}-git-{{ sha }}"` | Tag of Jib Image |
| image-tag | string | false | `"pipeline-${{ github.run_id }}-git-${GITHUB_SHA::8}}"` | Tag of Jib 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 |
Expand Down

0 comments on commit c32012e

Please sign in to comment.