Skip to content

Commit

Permalink
Add automatic publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
JustRed23 committed Oct 31, 2023
1 parent 059fe1a commit e733e42
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/gradle-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Gradle Package

on:
push

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file

- name: Build with Gradle
uses: gradle/[email protected]
with:
arguments: build

- name: Generate Release Hash
id: hash
run: echo "$(git rev-parse --short HEAD)" > hash.env

- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: jar
path: build/libs/KettingCore.jar

- name: Upload Hash
uses: actions/upload-artifact@v3
with:
name: hash
path: hash.env


release:
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
permissions:
contents: write

steps:
- name: Download Build Artifact
uses: actions/download-artifact@v3
with:
name: jar
path: tmp

- name: Download Hash
uses: actions/download-artifact@v3
with:
name: hash
path: tmp

- name: Create Release
run: |
tag=$(cat tmp/hash.env)
gh release create "$tag" tmp/KettingCore.jar \
--repo="$GITHUB_REPOSITORY" \
--title="${GITHUB_REPOSITORY#*/} ${tag#v}" \
--generate-notes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e733e42

Please sign in to comment.