Skip to content

Commit

Permalink
Added GitHub Action to publish JAR releases
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Flying-Poro authored Nov 24, 2022
1 parent 917118c commit 98f2d18
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Publish JAR releases

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Cache
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'

- name: Build JAR
run: 'mvn -B clean package'

- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
target/HorseEnhancer.jar

0 comments on commit 98f2d18

Please sign in to comment.