Build a Mojang mapped jar in addition to the reobf one, publish both to Modrinth with correct metadata #1199
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 PR | |
on: [pull_request] | |
jobs: | |
build_pr: | |
if: github.repository_owner == 'IntellectualSites' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/wrapper-validation@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
cache: gradle | |
java-version: 21 | |
- name: Build on ${{ matrix.os }} | |
run: ./gradlew build -s | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: FastAsyncWorldEdit-SNAPSHOT | |
path: worldedit-bukkit/build/libs/FastAsyncWorldEdit-*.jar |