-
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.29 KB
/
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
name: Maven Release
'on':
release:
types: [published]
jobs:
publish:
name: Build and Upload JARs
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: temurin
- name: Set maven project version
run: mvn -B versions:set -DnewVersion=${{ github.event.release.tag_name }} -DgenerateBackupPoms=false
- name: Build and package Maven project
run: mvn clean package -DskipTests
- name: Upload to release
uses: softprops/action-gh-release@v1
with:
files: target/PollMaster-${{ github.event.release.tag_name }}.jar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Modrinth Publish
uses: Kir-Antipov/[email protected]
with:
modrinth-id: 'BW18aGA0'
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
modrinth-featured: true
files: |
target/PollMaster-${{ github.event.release.tag_name }}.jar
loaders: |
spigot
paper
bukkit
game-versions: |
>=1.9 <=1.21.1
game-version-filter: 'releases'
java: 21