v2.7.5 #60
Workflow file for this run
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 run every time a new release is created. | |
# It will first build the plugin using Maven, then publish it to GitHub packages and finally attach the artifacts to the release | |
name: Build and release | |
on: | |
release: | |
types: [created] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Setup workspace | |
run: mkdir artifacts | |
- name: Build with Maven | |
run: | | |
mvn -B -s .github/workflows/settings.xml install --file pom.xml | |
cp MarriageMaster/target/M*.jar artifacts/ | |
- name: Build with Maven (Standalone) | |
run: | | |
mvn -B -s .github/workflows/settings.xml clean install --file pom.xml -P Standalone,ExcludeBadRabbit | |
mv MarriageMaster/target/M*-Standalone.jar artifacts/ | |
- name: Build with Maven (Release) | |
run: | | |
mvn -B -s .github/workflows/settings.xml clean package --file pom.xml -P Release | |
mv MarriageMaster/target/M*-Release.jar artifacts/ | |
- name: Upload the artifacts | |
uses: skx/github-action-publish-binaries@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
args: 'artifacts/M*' |