Prepare for release of 3.2.0 #176
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |