Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ name: Publish JAR

on:
push:
tags:
- '**'
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -13,15 +14,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'

- name: Build with Gradle
run: ./gradlew build

- name: Publish to Maven
run: ./gradlew publish
Loading