We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82be5c7 commit 70696d5Copy full SHA for 70696d5
1 file changed
.github/workflows/docker-publish.yml
@@ -38,6 +38,23 @@ jobs:
38
steps:
39
- name: Checkout repository
40
uses: actions/checkout@v3
41
+
42
+ - name: Set up JDK 17.0.6
43
+ uses: actions/setup-java@v3
44
+ with:
45
+ java-version: '17.0.6'
46
+ distribution: 'temurin'
47
48
+ - name: Setup Gradle
49
+ uses: gradle/gradle-build-action@v2
50
51
+ - name: Grant execute permission for ./gradlew
52
+ run: chmod +x ./gradlew
53
54
+ - name: Execute Gradle build
55
+ # Tests should be done before released
56
+ # Skip test for GitHub Actions
57
+ run: ./gradlew build -Pprofile=docker -x test
58
59
# Install the cosign tool except on PR
60
# https://github.com/sigstore/cosign-installer
0 commit comments