We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fa0a27 commit 2bb5861Copy full SHA for 2bb5861
.github/workflows/jib-cli-release.yml
@@ -18,6 +18,12 @@ jobs:
18
- name: Check out code
19
uses: actions/checkout@v4
20
21
+ - name: Set up JDK 8
22
+ uses: actions/setup-java@v3
23
+ with:
24
+ java-version: '8'
25
+ distribution: 'temurin'
26
+
27
- name: Build project
28
run: |
29
if [[ ! "${{ github.event.inputs.release_version }}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
.github/workflows/prepare-release.yml
@@ -22,7 +22,7 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: '8'
- distribution: 'temurin' # or 'adopt'
- name: Check input
echo '* input project: "${{ github.event.inputs.project }}"'
0 commit comments