Skip to content

Update for 26.1

Update for 26.1 #24

Workflow file for this run

name: Build PexNPC
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- name: Set up JDK 21
uses: actions/setup-java@v5.2.0
with:
java-version: 25.0.2
distribution: 'temurin'
- name: Configure Git
run: |
git config --global user.email "actions@github.com"
git config --global user.name "Github Actions"
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build
run: ./gradlew build
- name: Upload Jar
uses: actions/upload-artifact@v7.0.0
with:
name: PexNPC
path: build/libs/PexNPC-2.3.jar
archive: false