Skip to content

Block support : decorated_pot #105

Block support : decorated_pot

Block support : decorated_pot #105

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: j-mc-2-obj Maven build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn clean compile assembly:single
- name: Upload JAR Artifact
uses: actions/upload-artifact@v4
with:
name: Jar File
path: JAR
if-no-files-found: error