Skip to content

Commit 9ef24af

Browse files
authored
Update 1.3.0
2 parents 66eae92 + 8026685 commit 9ef24af

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1304
-589
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,9 @@ updates:
1010
schedule:
1111
interval: "weekly"
1212
target-branch: "dev"
13+
registries:
14+
maven-artifactory:
15+
type: maven-repository
16+
url: https://maven.lumivoid.pp.ua
17+
username: ${{ secrets.MAVEN_USERNAME }}
18+
password: ${{ secrets.MAVEN_PASSWORD }}

.github/workflows/build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,34 @@ jobs:
1414
java: [
1515
21, # Current Java LTS
1616
]
17+
python: [
18+
3.13,
19+
]
1720
runs-on: ubuntu-22.04
1821
steps:
1922
- name: checkout repository
2023
uses: actions/checkout@v4
24+
25+
- name: setup python ${{ matrix.python }}
26+
uses: actions/setup-python@v5
27+
with:
28+
python-version: ${{ matrix.python }}
29+
2130
- name: validate gradle wrapper
2231
uses: gradle/wrapper-validation-action@v2
32+
2333
- name: setup jdk ${{ matrix.java }}
2434
uses: actions/setup-java@v4
2535
with:
2636
java-version: ${{ matrix.java }}
2737
distribution: 'microsoft'
38+
2839
- name: make gradle wrapper executable
2940
run: chmod +x ./gradlew
41+
3042
- name: build
3143
run: ./gradlew build
44+
3245
- name: capture build artifacts
3346
if: ${{ matrix.java == '21' }} # Only upload artifacts built from latest java
3447
uses: actions/upload-artifact@v4

.github/workflows/maven.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Publishing to maven
22

3-
name: publish
3+
name: maven
44

55
on:
66
workflow_dispatch:
@@ -15,19 +15,33 @@ jobs:
1515
if: "!contains(github.ref, 'refs/tags/skip-ci')"
1616

1717
name: build and publish to maven
18+
strategy:
19+
matrix:
20+
python: [
21+
3.13,
22+
]
1823
runs-on: ubuntu-latest
1924

2025
steps:
2126
- name: checkout repository
2227
uses: actions/checkout@v4
28+
29+
- name: setup python ${{ matrix.python }}
30+
uses: actions/setup-python@v5
31+
with:
32+
python-version: ${{ matrix.python }}
33+
2334
- name: validate gradle wrapper
2435
uses: gradle/actions/wrapper-validation@v3
36+
2537
- name: setup jdk
2638
uses: actions/setup-java@v4
2739
with:
2840
java-version: 21
2941
distribution: 'microsoft'
42+
3043
- name: make gradle wrapper executable
3144
run: chmod +x ./gradlew
45+
3246
- name: building and publishing
3347
run: ./gradlew publish -PmavenUsername=${{ secrets.MAVEN_USERNAME }} -PmavenPassword=${{ secrets.MAVEN_PASSWORD }}

.github/workflows/publish.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,33 @@ jobs:
1414
if: "!contains(github.ref, 'refs/tags/skip-ci')"
1515

1616
name: build and publish to modrinth
17+
strategy:
18+
matrix:
19+
python: [
20+
3.13,
21+
]
1722
runs-on: ubuntu-latest
1823

1924
steps:
2025
- name: checkout repository
2126
uses: actions/checkout@v4
27+
28+
- name: setup python ${{ matrix.python }}
29+
uses: actions/setup-python@v5
30+
with:
31+
python-version: ${{ matrix.python }}
32+
2233
- name: validate gradle wrapper
2334
uses: gradle/actions/wrapper-validation@v3
35+
2436
- name: setup jdk
2537
uses: actions/setup-java@v4
2638
with:
2739
java-version: 21
2840
distribution: 'microsoft'
41+
2942
- name: make gradle wrapper executable
3043
run: chmod +x ./gradlew
44+
3145
- name: building and publishing
3246
run: ./gradlew modrinth -PmodrinthToken=${{ secrets.MODRINTH_TOKEN }}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,6 @@ replay_*.log
4040
*.jfr
4141

4242
.kotlin/
43+
44+
# python
45+
.venv

0 commit comments

Comments
 (0)