Skip to content

Compatibility Update for MC 1.20.2 #157

Compatibility Update for MC 1.20.2

Compatibility Update for MC 1.20.2 #157

Workflow file for this run

name: DynamicShop
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected] #https://github.com/actions/checkout/releases
- run: sed "s/{BUILDID}/$GITHUB_RUN_NUMBER/g" pom.xml > _pom.xml; rm pom.xml; mv _pom.xml pom.xml
- name: Set up JDK 8
uses: actions/[email protected] #https://github.com/actions/setup-java/releases
with:
distribution: 'temurin'
java-version: 8
- name: Build with Maven
run: mvn clean install
- run: mkdir staging && cp target/*.jar staging
- uses: actions/[email protected] #https://github.com/actions/upload-artifact/releases
with:
name: Package
path: staging