We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d26c93 commit ee28716Copy full SHA for ee28716
.github/workflows/publish.yml
@@ -24,19 +24,16 @@ jobs:
24
with:
25
token: ${{ secrets.CI_TOKEN }}
26
submodules: true
27
- - name: Set up JDK 17
+ - name: Build Project
28
+ timeout-minutes: 10
29
uses: actions/setup-java@v4
30
31
java-version: '17'
32
distribution: 'temurin'
- - name: Build with Gradle
33
- timeout-minutes: 10
34
- uses: gradle/gradle-build-action@v3
+ - run: ./gradlew build publishPlugins --no-daemon
35
env:
36
GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }}
37
GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }}
38
- with:
39
- arguments: build publishPlugins --no-daemon
40
- name: Upload test reports
41
uses: actions/upload-artifact@v4
42
if: always()
0 commit comments