Skip to content

Bump ASM version and add build workflows #2

Bump ASM version and add build workflows

Bump ASM version and add build workflows #2

name: Build replacer 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 replacerJar
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
path: build/libs/*.jar