Fix a bug with experience storage #34
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ rewrite ] | |
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 == 'rewrite' }} | |
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 == 'rewrite' }} | |
env: | |
CHANGELOG: ${{ github.event.head_commit.message }} | |
BUILD_NUMBER: ${{ github.run_number }} | |
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | |
run: ./gradlew modrinth |