forked from alkarinv/BattleArena
-
-
Notifications
You must be signed in to change notification settings - Fork 24
33 lines (31 loc) · 1.1 KB
/
build.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
name: Build
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
- name: Build with Gradle
run: ./gradlew bundledJar
- name: Publish to Maven Repository
if: ${{ success() && github.repository == 'BattlePlugins/BattleArena' && github.ref_name == 'master' }}
run: ./gradlew publish
env:
BUILD_NUMBER: ${{ github.run_number }}
ORG_GRADLE_PROJECT_battlepluginsUsername: ${{ vars.DEPLOY_USER }}
ORG_GRADLE_PROJECT_battlepluginsPassword: ${{ secrets.DEPLOY_SECRET }}
- name: Publish to Modrinth
if: ${{ success() && github.repository == 'BattlePlugins/BattleArena' && github.ref_name == 'master' }}
env:
CHANGELOG: ${{ github.event.head_commit.message }}
BUILD_NUMBER: ${{ github.run_number }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
run: ./gradlew modrinth