Skip to content

[Backport 2.x] Update Gradle to 8.10 #202

[Backport 2.x] Update Gradle to 8.10

[Backport 2.x] Update Gradle to 8.10 #202

Workflow file for this run

name: Build and Test Plugin Template
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
java:
- 17
- 21
name: Build and Test Plugin Template
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: temurin
- name: Build and Run Tests
run: |
./gradlew build
- name: Publish plugin ZIP to staging repository
run: |
./gradlew publishPluginZipPublicationToZipStagingRepository
- name: Update version to the next development iteration
if: matrix.os != 'windows-latest'
run: |
# Task to auto update version to the next development iteration and test against that
./gradlew updateVersion -DnewVersion=2.16.0-SNAPSHOT && ./gradlew build