Bump version #27
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: Releases | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK 21 | |
uses: actions/[email protected] | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- uses: gradle/actions/[email protected] | |
with: | |
gradle-version: 8.10.2 | |
name: Set up Gradle | |
- name: Add permission | |
run: chmod +x ./gradlew | |
- name: Execute Gradle build | |
run: ./gradlew build | |
- uses: ncipollo/[email protected] | |
with: | |
artifacts: "build/libs/*" | |
generateReleaseNotes: true |