Skip to content

Commit

Permalink
feat: github action to auto release version
Browse files Browse the repository at this point in the history
  • Loading branch information
aiden0z authored Mar 21, 2024
1 parent 08a7b13 commit dde5644
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: auto release version

on:
push:
tags:
- "v*.*.*"

jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read

steps:
- uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'zulu'

# Configure Gradle for optimal use in GiHub Actions, including caching of downloaded dependencies.
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0

- name: Build Jars
run: ./gradlew jar

- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: ./build/libs/*.jar

0 comments on commit dde5644

Please sign in to comment.