-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (60 loc) · 2.65 KB
/
gradle-publish-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Maven Deploy & Release
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write # Access to Publish a Release
packages: write # Access to Publish a Package
#--------------------------------------------------------------------------------------------
# Build the Artifact and Publish to Luxious Repository
#--------------------------------------------------------------------------------------------
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
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
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
- name: Build & Publish to Luxious Nexus
run: gradle publish
env:
LUXIOUS_NEXUS_USER: ${{ secrets.LUXIOUS_NEXUS_USER }}
LUXIOUS_NEXUS_PASS: ${{ secrets.LUXIOUS_NEXUS_PASS }}
#--------------------------------------------------------------------------------------------
# Create a Github Release
#--------------------------------------------------------------------------------------------
- name: Extract Version from Gradle
id: extract_version
run: |
version=$(gradle properties -q | grep "^version:" | awk '{print $2}')
echo "version=$version" >> $GITHUB_OUTPUT
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "/build/libs/*.jar"
allowUpdates: true
removeArtifacts: true
omitBodyDuringUpdate: true
omitDraftDuringUpdate: true
omitNameDuringUpdate: true
omitPrereleaseDuringUpdate: true
tag: "${{ steps.extract_version.outputs.version }}"
# Update the README.md Badge with the new version
- name: Create Version Badge
uses: schneegans/[email protected]
with:
auth: ${{ secrets.GIST_SECRET }}
gistID: 176f75278bd544e8657fdcf5562e7693
filename: test.json # Use test.svg if you want to use the SVG mode.
label: Latest Release
message: "${{ steps.extract_version.outputs.version }}"
color: blue