-
Notifications
You must be signed in to change notification settings - Fork 70
43 lines (41 loc) · 1.14 KB
/
publish.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
name: Compile & Release
on:
push:
paths:
- '**.gradle'
- '**.properties'
- '**/src/**'
- '.github/**'
branches:
- v4
- v5
- v6
- v7
- v8
- v9
- v10
- v11-23w13ab
- v11
- v12
- v13
- v14
- v14-24w14potato
- v15
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
java-version: 21
distribution: 'temurin'
- name: Upload to Maven
run: ./gradlew publish modPublish --stacktrace
if: |
!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.pull_request.title, '[ci skip]')
env:
MAVEN_PASS: ${{ secrets.MAVEN_PASS }}
curse_api_key: ${{ secrets.CF_API_KEY }}
modrinth_key: ${{ secrets.MODRINTH_KEY }}