-
Notifications
You must be signed in to change notification settings - Fork 22
57 lines (56 loc) · 1.69 KB
/
deploy-master.yml
File metadata and controls
57 lines (56 loc) · 1.69 KB
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
name: Bump and Publish Master Branch
on:
pull_request:
types:
- closed
workflow_dispatch:
jobs:
bump:
if: github.event.pull_request.merged
runs-on: ubuntu-latest
steps:
- name: Checkout Latest Commit
uses: actions/checkout@v6.0.3
- name: Bump Version
id: bump
uses: Plugily-Projects/version-bump-action@v10
with:
github-token: ${{ secrets.github_token }}
auto-version-bump: false
auto-version-bump-release: true
- name: Print Version
run: "echo 'New Version: ${{steps.bump.outputs.version}}'"
publish:
needs: bump
runs-on: ubuntu-latest
steps:
- name: Checkout Latest Commit
uses: actions/checkout@v6.0.3
with:
ref: 'master'
- name: Set up JDK
uses: actions/setup-java@v5.2.0
with:
distribution: 'temurin'
java-version: '21'
java-package: jdk
- name: Set up Maven
uses: stCarolas/setup-maven@v5.1
with:
maven-version: 3.8.2
- name: Cache
uses: actions/cache@v5.0.5
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: maven-
- name: Publish with Maven
uses: s4u/maven-settings-action@v4.0.0
with:
servers: |
[{
"id": "Release",
"username": "${{ secrets.RELEASESUSERNAME }}",
"password": "${{ secrets.RELEASESPASSWORD }}"
}]
- run: mvn clean verify compile package site:site javadoc:javadoc javadoc:jar deploy -DaltDeploymentRepository=Release::https://maven.plugily.xyz/releases -f pom.xml