Skip to content

Dev/patch - start work on future update #180

Dev/patch - start work on future update

Dev/patch - start work on future update #180

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: '**'
pull_request:
branches: '**'
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3.6.0
- name: Set up JDK 16
uses: actions/setup-java@v4.4.0
with:
java-version: '23.0.0+37'
distribution: 'temurin'
- name: Build with Maven
run: mvn -B package -P macos --file pom.xml
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4.4.0
with:
# Artifact name
name: McDeob-Jar
# A file, directory or wildcard pattern that describes what to upload
path: |
target/McDeob*.jar
- name: Upload a macOS Build Artifact
uses: actions/upload-artifact@v4.4.0
with:
# Artifact name
name: McDeob-macOS
# A file, directory or wildcard pattern that describes what to upload
path: |
target/*.dmg