2.2.6 Release #661
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 with Gradle | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "17" | |
distribution: temurin | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
gradle-version: "8.10.2" | |
- name: Build with Gradle | |
run: ./gradlew build --refresh-dependencies | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: AuraSkills | |
path: build/libs/AuraSkills-**.jar | |
- name: Delete all summary content | |
run: rm $GITHUB_STEP_SUMMARY |