Bump rexml from 3.2.5 to 3.3.3 in /docs #837
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build plugin | |
on: [pull_request, push] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
distribution: [temurin] | |
java-version: ["21"] | |
runs-on: ${{ matrix.os }} | |
if: "!startsWith(github.event.commits[0].message, '[ci-skip]')" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v2 | |
- name: "Setup JDK (${{ matrix.distribution }} ${{ matrix.java-version }})" | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "${{ matrix.distribution }}" | |
java-version: "${{ matrix.java-version }}" | |
cache: gradle | |
cache-dependency-path: | | |
**/*.gradle* | |
**/gradle-wrapper.properties | |
- name: Build with Gradle | |
run: ./gradlew allJar --no-daemon --stacktrace | |
- name: "Upload the Java ${{ matrix.java-version }} plugin JAR" | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "Quests-JDK${{ matrix.java-version }}" | |
path: | | |
build/libs/*.jar | |
!build/libs/*+java8.jar | |
if-no-files-found: error | |
- name: Upload the Java 8 plugin JAR | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Quests-JDK8 (use at your own risk) | |
path: build/libs/*+java8.jar | |
if-no-files-found: error |