Skip to content

Bump ASM version and add build workflows #4

Bump ASM version and add build workflows

Bump ASM version and add build workflows #4

Workflow file for this run

name: Build agent jar
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean agentJar
- name: Compute short SHA
id: sha
run: echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: AddonPatcher-Agent-${{ steps.sha.outputs.sha_short }}.jar
path: build/libs/*.jar