Skip to content

0.101.1.0 for MC 1.19.* & 1.20.* & 1.21.* #101

0.101.1.0 for MC 1.19.* & 1.20.* & 1.21.*

0.101.1.0 for MC 1.19.* & 1.20.* & 1.21.* #101

name: Published Release / PreRelease
on:
release:
types: [released]
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Eclipse Temurin
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
java-package: jdk
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Deploy to GitHub Package Registry
run: mvn -B deploy -s $GITHUB_WORKSPACE/settings.xml -DskipTests=false
env:
GITHUB_TOKEN: ${{ github.token }}