-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathaction.yml
More file actions
41 lines (37 loc) · 1.09 KB
/
action.yml
File metadata and controls
41 lines (37 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Build HTML-Attribute-Folder
runs:
using: "composite"
steps:
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: ${{ inputs.java_version }}
cache: 'gradle'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-disabled: true
- name: Build, Tests and Verify Plugin
shell: bash
run: |
./gradlew buildPlugin verifyPlugin check \
-PpluginVersion=${{ inputs.version }} \
--no-configuration-cache \
--no-build-cache \
--no-daemon \
--max-workers=1 \
-Dorg.gradle.internal.http.socketTimeout=120000 \
-Dorg.gradle.internal.http.connectionTimeout=120000 \
-Dorg.gradle.internal.network.retry.max.attempts=10
env:
GRADLE_USER_HOME: /mnt/gradle-cache
GRADLE_OPTS: "-Dorg.gradle.configuration-cache=false"
inputs:
version:
description: Version of the Release
required: true
java_version:
description: Java version to use
required: false
default: "21"