Skip to content

Commit

Permalink
Fixes #7 - Add release workflow (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Jul 8, 2024
1 parent 77d835e commit 4b15023
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: release
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v1
- name: Set up Java 21
uses: actions/setup-java@v1
with:
java-version: 21
- name: Build with Maven
run: mvn -B -DskipTests=true -f pom.xml --ntp install

0 comments on commit 4b15023

Please sign in to comment.