-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
35643be
commit 5a3f920
Showing
3 changed files
with
84 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: Publish Jars | ||
|
||
permissions: | ||
contents: write | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release_name: | ||
description: 'The name of the release' | ||
required: true | ||
type: string | ||
release_body: | ||
description: 'The description of the release' | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
build_latest: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout sources | ||
uses: actions/checkout@v4 | ||
- name: validate gradle wrapper | ||
uses: gradle/wrapper-validation-action@v2 | ||
- name: setup java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 21 | ||
- name: Test | ||
run: | | ||
chmod +x ./gradlew | ||
./gradlew runMainTest | ||
- name: upload build artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: normal | ||
path: build/libs/*.jar | ||
compression-level: 1 | ||
|
||
build_5: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout sources | ||
uses: actions/checkout@v4 | ||
- name: validate gradle wrapper | ||
uses: gradle/wrapper-validation-action@v2 | ||
- name: setup java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 8 | ||
- name: setup gradle | ||
uses: gradle/actions/setup-gradle@v4 | ||
- name: run test | ||
run: | | ||
chmod +x ./gradlew | ||
./gradlew java5Jar | ||
- name: upload build artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: java-5 | ||
path: build/libs/*.jar | ||
compression-level: 1 | ||
|
||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: artifacts/ | ||
merge-multiple: true | ||
- name: create release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
name: ${{ inputs.release_name }} | ||
body: ${{ inputs.release_body }} | ||
files: ${{ ls -1 }} | ||
tag_name: ${{ ls -AU artifacts | head -1 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters