Skip to content

feat: use Mojang-mapped jars instead of reobfuscated ones #241

feat: use Mojang-mapped jars instead of reobfuscated ones

feat: use Mojang-mapped jars instead of reobfuscated ones #241

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
project: [ 'admin', 'bedtime', 'core', 'enchantments', 'permissions', 'portals', 'regions', 'trifles', 'waterfall', 'velocity' ]
steps:
- uses: actions/[email protected]
- name: Set up JDK 17
uses: actions/[email protected]
with:
java-version: 17
distribution: 'temurin'
- name: Gradle build
run: |
cd vane-${{ matrix.project }}
gradle build
# Get the Git hash
git_hash=$(git rev-parse --short "$GITHUB_SHA")
echo "git_hash=$git_hash" >> $GITHUB_ENV
- name: Upload JAR
if: ${{ github.event_name == 'push' }}
uses: actions/upload-artifact@v3
with:
name: vane-${{ matrix.project }}-${{ env.git_hash }}.jar
path: target/vane-${{ matrix.project }}-*.jar