Bump version (1.1.3) #25
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
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Build | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'gradle/**' | |
- 'src/**' | |
- 'build.gradle.kts' | |
- 'settings.gradle.kts' | |
- 'gradlew' | |
- 'gradlew.bat' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.commits[0].message, '[no-build]')" | |
steps: | |
- uses: "actions/[email protected]" | |
- uses: "gradle/[email protected]" | |
- name: Set up JDK | |
uses: "actions/[email protected]" | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Test with Gradle | |
run: ./gradlew test | |
- name: Build jar with Gradle | |
run: ./gradlew build | |
- name: Upload artifacts | |
uses: "actions/[email protected]" | |
with: | |
name: Gradle Galaxy | |
path: build/libs |